Package net.sourceforge.cobertura.ant

Examples of net.sourceforge.cobertura.ant.Regex


        this.regexes.add( regex );
    }

    public Regex createRegex()
    {
        Regex regex = new Regex();
        this.regexes.add( regex );
        return regex;
    }
View Full Code Here


        check = new ConfigCheck();
    }

    public void testAddRegex()
    {
        Regex regex = new Regex();

        check.addRegex( regex );

        Set regexes = check.getRegexes();
View Full Code Here

        assertTrue( regexes.contains( regex ) );
    }

    public void testCreateRegex()
    {
        Regex regex = check.createRegex();

        Set regexes = check.getRegexes();

        assertEquals( 1, regexes.size() );
View Full Code Here

TOP

Related Classes of net.sourceforge.cobertura.ant.Regex

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.