| 17 | |
| 18 | |
| 19 | public interface Checker |
| 20 | { |
| 21 | /** |
| 22 | * @param expectedText null means text isn't known. |
| 23 | */ |
| 24 | Checker fieldName(String expectedText, int expectedSid); |
| 25 | |
| 26 | /** Check the first annotation's text */ |
| 27 | Checker annotation(String expectedText); |
| 28 | |
| 29 | /** Check the first annotation's text and sid */ |
| 30 | Checker annotation(String expectedText, int expectedSid); |
| 31 | |
| 32 | /** Check that all the annotations exist in the given order. */ |
| 33 | Checker annotations(String[] expectedTexts, int[] expectedSids); |
| 34 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…