Package org.jtestserver.server.commands

Examples of org.jtestserver.server.commands.MauveTestRunner


    //private static final String MAUVE_TEST = "gnu.testlet.java.io.BufferedInputStream.SimpleRead";
    private static final String MAUVE_TEST = "gnu.testlet.java.io.DataOutputStream.WriteRead";
   
    @Test   
    public void testRunTest() throws IOException {
        MauveTestRunner runner = MauveTestRunner.getInstance();
        try {
            RunResult result = runner.runTest(MAUVE_TEST);
            assertNotNull(result);
        } catch (TestFailureException e) {
            fail(e.getMessage());
        }
    }
View Full Code Here

TOP

Related Classes of org.jtestserver.server.commands.MauveTestRunner

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.