com.sun.maven.junit
Interface TestCaseRunner

All Known Implementing Classes:
LocalTestCaseRunner

public interface TestCaseRunner

Remoting interface to run tests.

Author:
Kohsuke Kawaguchi

Method Summary
 Result runTestCase(String fileName)
          Runs a single test case and returns the result.
 void setUp(List<URL> classpath, boolean quiet)
          Prepares for the test execution.
 void tearDown()
          The clean up that pairs with setUp(List, boolean)
 

Method Detail

setUp

void setUp(List<URL> classpath,
           boolean quiet)
Prepares for the test execution.

Parameters:
classpath -
quiet -

runTestCase

Result runTestCase(String fileName)
Runs a single test case and returns the result.

Parameters:
fileName - File name of the test case class, relative to the class directory root.

tearDown

void tearDown()
The clean up that pairs with setUp(List, boolean)



Copyright © 2011. All Rights Reserved.