~ubuntu-branches/ubuntu/precise/surefire/precise

« back to all changes in this revision

Viewing changes to surefire-integration-tests/src/test/resources/ant-ignore/src/test/java/antignore/BasicTest.java

  • Committer: Bazaar Package Importer
  • Author(s): Miguel Landaeta
  • Date: 2011-10-10 20:42:16 UTC
  • mfrom: (2.2.4 sid)
  • Revision ID: james.westby@ubuntu.com-20111010204216-cemva69wkagf4fay
Tags: 2.10-1
* Team upload.
* New upstream release.
* Refresh and remove unneccesary patches.
* Add Build-Depends on libsurefire-java and
  libmaven-common-artifact-filters-java.
* Drop outdated Maven artifact surefire-junit.
* Provide new Maven artifacts: surefire-junit3, maven-surefire-common,
  common-junit3, common-junit4, surefire-junit47 and surefire-testng-utils.
* Fix clean target to allow "two in a row" builds.
* Update Vcs-Browser field.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package antignore;
 
2
import junit.framework.TestCase;
 
3
import org.junit.Assert;
 
4
import org.junit.Test;
 
5
import org.junit.Ignore;
 
6
 
 
7
 
 
8
 
 
9
public class BasicTest
 
10
{
 
11
 
 
12
    @Ignore
 
13
    public void testIgnorable()
 
14
    {
 
15
        Assert.fail("you should have ignored me!");
 
16
    }
 
17
 
 
18
    @Test
 
19
    public void testSomethingElse(){
 
20
 
 
21
    }
 
22
 
 
23
}