FileDocCategorySizeDatePackage
Jdk14RegexpRegexpTest.javaAPI DocApache Ant 1.702228Wed Dec 13 06:16:20 GMT 2006org.apache.tools.ant.util.regexp

Jdk14RegexpRegexpTest

public class Jdk14RegexpRegexpTest extends RegexpTest
Tests for the JDK 1.4 implementation of the Regexp interface.

Fields Summary
Constructors Summary
public Jdk14RegexpRegexpTest(String name)

        super(name);
    
Methods Summary
public RegexpgetRegexpImplementation()

        return new Jdk14RegexpRegexp();
    
public voidtestLineSeparatorCharacter()

        try {
            super.testLineSeparatorCharacter();
            fail("Should trigger once fixed. {@since JDK 1.4RC1}");
        } catch (AssertionFailedError e){
        }
    
public voidtestParagraphCharacter()

        try {
            super.testParagraphCharacter();
            fail("Should trigger once fixed. {@since JDK 1.4RC1}");
        } catch (AssertionFailedError e){
        }
    
public voidtestStandaloneCR()

        try {
            super.testStandaloneCR();
            fail("Should trigger once fixed. {@since JDK 1.4RC1}");
        } catch (AssertionFailedError e){
        }
    
public voidtestWindowsLineSeparator()

        try {
            super.testWindowsLineSeparator();
            fail("Should trigger once fixed. {@since JDK 1.4RC1}");
        } catch (AssertionFailedError e){
        }