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

import org.junit.Assert;
import org.junit.Test;

import com.vaadin.tests.tb3.SingleBrowserTest;

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