Package com.consol.citrus.util

Examples of com.consol.citrus.util.TestCaseCreator


*/
public class SvgTestDocGeneratorTest extends AbstractTestNGUnitTest {

    @BeforeClass
    public void createSampleTest() {
        TestCaseCreator creator = TestCaseCreator.build()
                .withAuthor("Christoph")
                .withDescription("This is a sample test")
                .withName("SampleTest")
                .usePackage("com.consol.citrus.sample")
                .withFramework(UnitFramework.TESTNG);

        creator.createTestCase();
    }
View Full Code Here

TOP

Related Classes of com.consol.citrus.util.TestCaseCreator

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.