summaryrefslogtreecommitdiffstats
path: root/tests/integration/tests/custom-projects/ant-dynamic-junit/test/FailTest.java
blob: 7cdd82548ee63d3be28ee0b8b9a3d3c11be6b689 (plain)
1
2
3
4
5
6
7
8
9
10
public class FailTest extends junit.framework.TestCase {

    public void testNothing() {
    }
    
    public void testWillAlwaysFail() {
        fail("An error message");
    }
    
}