File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
inject-generator/src/test/java/io/avaje/inject/generator Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 1
1
package io .avaje .inject .generator ;
2
2
3
- import org .junit .jupiter .api .Test ;
4
-
5
-
6
3
import static io .avaje .inject .generator .IncludeAnnotations .include ;
7
4
import static org .junit .jupiter .api .Assertions .assertFalse ;
8
5
import static org .junit .jupiter .api .Assertions .assertTrue ;
9
6
7
+ import org .junit .jupiter .api .Test ;
8
+
10
9
public class IncludeAnnotationsTest {
11
10
12
11
@ Test
@@ -32,7 +31,7 @@ public void exclude_di_annotations() {
32
31
assertFalse (include ("foo.Generated" ));
33
32
assertFalse (include (Constants .SINGLETON ));
34
33
assertFalse (include ("jakarta.inject.Named" ));
35
- assertFalse (include (Constants . FACTORY ));
34
+ assertFalse (include ("io.avaje.inject.Factory" ));
36
35
assertFalse (include ("io.avaje.inject.Primary" ));
37
36
assertFalse (include ("io.avaje.inject.Secondary" ));
38
37
assertFalse (include (Constants .PATH ));
You can’t perform that action at this time.
0 commit comments