()
| 630 | |
| 631 | #[test] |
| 632 | fn no_errors_on_valid_java() { |
| 633 | let data = parse_java("package com.example;\npublic class Foo { void bar() {} }"); |
| 634 | assert!( |
| 635 | data.syntax_errors.is_empty(), |
| 636 | "expected no errors: {:?}", |
| 637 | data.syntax_errors |
| 638 | ); |
| 639 | } |
| 640 | |
| 641 | #[test] |
| 642 | fn missing_semicolon_java() { |
nothing calls this directly
no test coverage detected