Entry point for fuzzing with default (arbitrary) string generator
(@From(JavaScriptCodeGenerator.class) String code)
| 48 | |
| 49 | /** Entry point for fuzzing with default (arbitrary) string generator */ |
| 50 | @Fuzz |
| 51 | public void testWithGenerator(@From(JavaScriptCodeGenerator.class) String code) { |
| 52 | SourceFile input = SourceFile.fromCode("input", code); |
| 53 | compile(input); |
| 54 | } |
| 55 | } |