Verifies that \@Alerts is correctly defined.
(final List<String> lines, final String relativePath)
| 586 | * Verifies that \@Alerts is correctly defined. |
| 587 | */ |
| 588 | private void alerts(final List<String> lines, final String relativePath) { |
| 589 | for (int i = 0; i < lines.size(); i++) { |
| 590 | if (lines.get(i).startsWith(" @Alerts(")) { |
| 591 | final List<String> alerts = alertsToList(lines, i, true); |
| 592 | alertVerify(alerts, relativePath, i); |
| 593 | } |
| 594 | } |
| 595 | } |
| 596 | |
| 597 | /** |
| 598 | * Verifies that the class name is used. |
no test coverage detected