You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

VerifyAssertionsEnabledTest.java 380B

123456789101112131415
  1. package com.vaadin.tests;
  2. import static org.junit.Assert.assertEquals;
  3. import org.junit.Test;
  4. import com.vaadin.tests.tb3.SingleBrowserTest;
  5. public class VerifyAssertionsEnabledTest extends SingleBrowserTest {
  6. @Test
  7. public void verifyServerAssertions() throws Exception {
  8. openTestURL();
  9. assertEquals("1. Assertions are enabled", getLogRow(0));
  10. }
  11. }