summaryrefslogtreecommitdiffstats
path: root/uitest/src/test/java/com/vaadin/tests/VerifyAssertionsEnabledTest.java
blob: a34d2b4d7ffeaeee663cc93a89ad5b614bc77c3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.vaadin.tests;

import static org.junit.Assert.assertEquals;

import org.junit.Test;

import com.vaadin.tests.tb3.SingleBrowserTest;

public class VerifyAssertionsEnabledTest extends SingleBrowserTest {
    @Test
    public void verifyServerAssertions() throws Exception {
        openTestURL();
        assertEquals("1. Assertions are enabled", getLogRow(0));
    }
}