org.jtiger.framework
Interface TestDefinition

All Known Implementing Classes:
JUnitTestDefinition

public interface TestDefinition

Determines whether or not a given java.lang.reflect.Method is to be considered a test case method.
Custom implementations can be passed on the command line using the appropriate argument.

Version:
2.1
Build Number 0376
Build Time 2006-07-28 01:50.16.218 CET (GMT + 1)
Author:
Tony Morris
See Also:
FixturesRunnerConfig, FixturesRunnerConfigFactory, Test

Method Summary
 boolean isTest(Method m)
          Returns true if the given java.lang.reflect.Method is to be considered a test case method.
 

Method Detail

isTest

boolean isTest(Method m)
Returns true if the given java.lang.reflect.Method is to be considered a test case method.

Parameters:
m - The method to determine if it is a test case method.
Returns:
true if the given java.lang.reflect.Method is to be considered a test case method.