Skip to content

Commit 54baeb3

Browse files
eamonnmcmanusGoogle Java Core Libraries
authored and
Google Java Core Libraries
committed
Update an AutoValue test to the newer compile-testing API.
RELNOTES=n/a PiperOrigin-RevId: 375814417
1 parent c84e6af commit 54baeb3

File tree

1 file changed

+30
-23
lines changed

1 file changed

+30
-23
lines changed

value/src/test/java/com/google/auto/value/processor/PropertyAnnotationsTest.java

+30-23
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,13 @@
1515
*/
1616
package com.google.auto.value.processor;
1717

18-
import static com.google.common.truth.Truth.assertAbout;
19-
import static com.google.testing.compile.JavaSourceSubjectFactory.javaSource;
18+
import static com.google.testing.compile.CompilationSubject.assertThat;
19+
import static com.google.testing.compile.Compiler.javac;
2020

2121
import com.google.common.collect.ImmutableList;
2222
import com.google.common.collect.ImmutableSet;
2323
import com.google.common.collect.ImmutableSortedSet;
24+
import com.google.testing.compile.Compilation;
2425
import com.google.testing.compile.JavaFileObjects;
2526
import java.lang.annotation.ElementType;
2627
import java.lang.annotation.Inherited;
@@ -272,13 +273,15 @@ private void assertGeneratedMatches(
272273
.addMethodAnnotations(expectedMethodAnnotations)
273274
.build();
274275

275-
assertAbout(javaSource())
276-
.that(javaFileObject)
277-
.withCompilerOptions("-A" + Nullables.NULLABLE_OPTION + "=")
278-
.processedWith(new AutoValueProcessor())
279-
.compilesWithoutError()
280-
.and()
281-
.generatesSources(expectedOutput);
276+
Compilation compilation =
277+
javac()
278+
.withOptions("-A" + Nullables.NULLABLE_OPTION + "=")
279+
.withProcessors(new AutoValueProcessor())
280+
.compile(javaFileObject);
281+
assertThat(compilation).succeeded();
282+
assertThat(compilation)
283+
.generatedSourceFile("foo.bar.AutoValue_Baz")
284+
.hasSourceEquivalentTo(expectedOutput);
282285
}
283286

284287
@Test
@@ -513,13 +516,15 @@ public void testCopyingMethodAnnotations() {
513516
.addFieldAnnotations("@Deprecated", "@PropertyAnnotationsTest.InheritedAnnotation")
514517
.build();
515518

516-
assertAbout(javaSource())
517-
.that(inputFile)
518-
.withCompilerOptions("-A" + Nullables.NULLABLE_OPTION + "=")
519-
.processedWith(new AutoValueProcessor())
520-
.compilesWithoutError()
521-
.and()
522-
.generatesSources(outputFile);
519+
Compilation compilation =
520+
javac()
521+
.withOptions("-A" + Nullables.NULLABLE_OPTION)
522+
.withProcessors(new AutoValueProcessor())
523+
.compile(inputFile);
524+
assertThat(compilation).succeeded();
525+
assertThat(compilation)
526+
.generatedSourceFile("foo.bar.AutoValue_Baz")
527+
.hasSourceEquivalentTo(outputFile);
523528
}
524529

525530
/**
@@ -552,12 +557,14 @@ public void testCopyingMethodAnnotationsToGeneratedFields() {
552557
"@Baz.MethodsOnly")
553558
.build();
554559

555-
assertAbout(javaSource())
556-
.that(inputFile)
557-
.withCompilerOptions("-A" + Nullables.NULLABLE_OPTION + "=")
558-
.processedWith(new AutoValueProcessor())
559-
.compilesWithoutError()
560-
.and()
561-
.generatesSources(outputFile);
560+
Compilation compilation =
561+
javac()
562+
.withOptions("-A" + Nullables.NULLABLE_OPTION + "=")
563+
.withProcessors(new AutoValueProcessor())
564+
.compile(inputFile);
565+
assertThat(compilation).succeeded();
566+
assertThat(compilation)
567+
.generatedSourceFile("foo.bar.AutoValue_Baz")
568+
.hasSourceEquivalentTo(outputFile);
562569
}
563570
}

0 commit comments

Comments
 (0)