Package org.hamcrest.generator

Examples of org.hamcrest.generator.FactoryMethod


                "  <factory class='test.SomeMatcher'/>" +
                "  <factory class='test.AnotherMatcher'/>" +
                "</matchers>"));

        final List<FactoryMethod> result = sugarConfiguration.factoryMethods();
        assertTrue(result.contains(new FactoryMethod("test.SomeMatcher", "matcher1", "org.hamcrest.Matcher")));
        assertTrue(result.contains(new FactoryMethod("test.SomeMatcher", "matcher2", "org.hamcrest.Matcher")));
        assertTrue(result.contains(new FactoryMethod("test.AnotherMatcher", "matcher3", "org.hamcrest.MyMatcher")));
    }
View Full Code Here

TOP

Related Classes of org.hamcrest.generator.FactoryMethod

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.