[jboss-svn-commits] JBoss Common SVN: r3713 - arquillian/trunk/junit/src/test/java/org/jboss/arquillian/junit.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Sun Nov 15 10:27:23 EST 2009


Author: aslak
Date: 2009-11-15 10:27:23 -0500 (Sun, 15 Nov 2009)
New Revision: 3713

Modified:
   arquillian/trunk/junit/src/test/java/org/jboss/arquillian/junit/APITestCase.java
Log:
ARq-17 Added ignore to test cases

Modified: arquillian/trunk/junit/src/test/java/org/jboss/arquillian/junit/APITestCase.java
===================================================================
--- arquillian/trunk/junit/src/test/java/org/jboss/arquillian/junit/APITestCase.java	2009-11-15 15:26:49 UTC (rev 3712)
+++ arquillian/trunk/junit/src/test/java/org/jboss/arquillian/junit/APITestCase.java	2009-11-15 15:27:23 UTC (rev 3713)
@@ -20,6 +20,7 @@
 import org.jboss.shrinkwrap.api.Archives;
 import org.jboss.shrinkwrap.api.spec.WebArchive;
 import org.junit.Assert;
+import org.junit.Ignore;
 import org.junit.Test;
 import org.junit.runner.RunWith;
 
@@ -40,16 +41,19 @@
    }
    
    @Test
+   @Ignore
    public void myTestCase() throws Exception {
       System.out.println("test run");
    }
    
    @Test
+   @Ignore
    public void myFailingTestCase() throws Exception {
       Assert.assertTrue(false);      
    }
 
    @Test(expected = IllegalArgumentException.class)
+   @Ignore
    public void myExpectedFailingTestCase() throws Exception {
       throw new IllegalArgumentException("This is ok");
    }



More information about the jboss-svn-commits mailing list