All tests in the HtmlAnnotationsTest class need to do the initial assert check
authorJaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 18 Apr 2016 04:08:42 +0200
changeset 1924cf3873164b9f
parent 1923 4185cdeeee7e
child 1925 dc9613d000ad
All tests in the HtmlAnnotationsTest class need to do the initial assert check
rt/emul/compacttest/src/test/java/org/apidesign/bck2brwsr/vmtest/impl/HtmlAnnotationsTest.java
     1.1 --- a/rt/emul/compacttest/src/test/java/org/apidesign/bck2brwsr/vmtest/impl/HtmlAnnotationsTest.java	Sun Apr 17 13:16:31 2016 +0200
     1.2 +++ b/rt/emul/compacttest/src/test/java/org/apidesign/bck2brwsr/vmtest/impl/HtmlAnnotationsTest.java	Mon Apr 18 04:08:42 2016 +0200
     1.3 @@ -80,11 +80,13 @@
     1.4      }
     1.5  
     1.6      @BrwsrTest public void date() throws Exception {
     1.7 +        assertMulNotDefinedForTheFirstTime();
     1.8          Object april = HtmlAnnotations.april2016();
     1.9          assertEquals(HtmlAnnotations.year(april), 2016);
    1.10      }
    1.11  
    1.12      @BrwsrTest public void yes() throws Exception {
    1.13 +        assertMulNotDefinedForTheFirstTime();
    1.14          String yes = HtmlAnnotations.yesNo(new Callable<Boolean>() {
    1.15              @Override
    1.16              public Boolean call() throws Exception {
    1.17 @@ -95,6 +97,7 @@
    1.18      }
    1.19  
    1.20      @BrwsrTest public void no() throws Exception {
    1.21 +        assertMulNotDefinedForTheFirstTime();
    1.22          String no = HtmlAnnotations.yesNo(new Callable<Boolean>() {
    1.23              @Override
    1.24              public Boolean call() throws Exception {