@throws Exception if an error occurs
()
| 59 | * @throws Exception if an error occurs |
| 60 | */ |
| 61 | @Test |
| 62 | @Alerts(DEFAULT = {"89", "0"}, |
| 63 | CHROME = {"89", "1"}, |
| 64 | EDGE = {"89", "1"}) |
| 65 | @HtmlUnitNYI(CHROME = {"70", "50"}, |
| 66 | EDGE = {"70", "50"}, |
| 67 | FF = {"70", "50"}, |
| 68 | FF_ESR = {"70", "50"}) |
| 69 | public void basic() throws Exception { |
| 70 | test("basic", Integer.parseInt(getExpectedAlerts()[0]), Integer.parseInt(getExpectedAlerts()[1])); |
| 71 | } |
| 72 | |
| 73 | private void test(final String fileName, final int expectedTotal, final int expectedFailed) throws Exception { |
| 74 | final String url = URL_FIRST + "tests/" + fileName + ".html"; |
nothing calls this directly
no test coverage detected