We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d7ea93 commit 74bab2fCopy full SHA for 74bab2f
1 file changed
modules/jooby-apt/src/test/java/tests/i3567/Issue3567.java
@@ -22,15 +22,9 @@ public void shouldSupportGoogleInjectAnnotation() throws Exception {
22
new ProcessorRunner(new C3567(conf))
23
.withSourceCode(
24
source -> {
25
- assertTrue(
26
- source.contains(
27
- "public C3567_() {\n"
28
- + " this(C3567.class);\n"
29
- + " }\n"
30
- + "\n"
31
- + " public C3567_(Class<C3567> type) {\n"
32
- + " this(ctx -> ctx.require(type));\n"
33
- + " }"));
+ assertTrue(source.contains("this(C3567.class);"));
+ assertTrue(source.contains("public C3567_(Class<C3567> type) {"));
+ assertTrue(source.contains("this(ctx -> ctx.require(type));"));
34
});
35
}
36
0 commit comments