Uses of Enum Class
org.ek9lang.cli.TestType
Packages that use TestType
Package
Description
A-1 - Start here for the main command-line entry use of the compiler.
-
Uses of TestType in org.ek9lang.cli
Subclasses with type arguments of type TestType in org.ek9lang.cliModifier and TypeClassDescriptionenumClassification of @Test program types based on validation mechanism.Methods in org.ek9lang.cli that return TestTypeModifier and TypeMethodDescriptionDiscoveredTest.testType()Returns the value of thetestTyperecord component.TestResult.testType()Returns the value of thetestTyperecord component.TestType.toHybrid()Get the hybrid variant of this test type.static TestTypeReturns the enum constant of this class with the specified name.static TestType[]TestType.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.ek9lang.cli with parameters of type TestTypeModifier and TypeMethodDescription(package private) static TestResultTestResult.exception(TestProgram testProgram, TestType testType, String caseId, Duration duration, String output, String errorOutput, Throwable exception) Create a failed test result from an exception for a test case.(package private) static TestResultTestResult.failure(TestProgram testProgram, TestType testType, String caseId, Duration duration, String output, String errorOutput, String errorMessage) Create a failed test result for a test case.(package private) static TestResultTestResult.success(TestProgram testProgram, TestType testType, String caseId, Duration duration, String output, String errorOutput) Create a successful test result for a test case.Constructors in org.ek9lang.cli with parameters of type TestTypeModifierConstructorDescriptionDiscoveredTest(TestProgram testProgram, TestType testType, List<TestCase> testCases) Constructor for tests without configuration errors.DiscoveredTest(TestProgram testProgram, TestType testType, List<TestCase> testCases, String configurationError) Creates an instance of aDiscoveredTestrecord class.(package private)TestResult(TestProgram testProgram, TestType testType, String caseId, boolean passed, Duration duration, String output, String errorOutput, String errorMessage, Throwable exception) Creates an instance of aTestResultrecord class.