javatests/com/google/cloud/deploymentmanager/autogen/soy/SoyDirectivesTest.java [158:166]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private static void assertOutput(
      Object expected, SoyValue value, SoyJavaPrintDirective directive, Object... args) {
    ImmutableList.Builder<SoyValue> argsData = ImmutableList.builder();
    for (Object arg : args) {
      argsData.add(SoyValueConverter.INSTANCE.convert(arg).resolve());
    }
    assertThat(directive.applyForJava(value, argsData.build()))
        .isEqualTo(SoyValueConverter.INSTANCE.convert(expected).resolve());
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



javatests/com/google/cloud/deploymentmanager/autogen/SoyDirectivesTest.java [52:60]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private void assertOutput(
      Object expected, SoyValue value, SoyJavaPrintDirective directive, Object... args) {
    ImmutableList.Builder<SoyValue> argsData = ImmutableList.builder();
    for (Object arg : args) {
      argsData.add(SoyValueConverter.INSTANCE.convert(arg).resolve());
    }
    assertThat(directive.applyForJava(value, argsData.build()))
        .isEqualTo(SoyValueConverter.INSTANCE.convert(expected).resolve());
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



