TestClass
annotationin packageklyn.unittest
public annotation TestClass:
TestClass

Annotation to mark a class as a test class.

Example
@TestClass(category="Unit Tests", description="This is a unit test class.")
public class MyTestClass:
@Test(timeout=1000, expected=ValueException)
public testMethod():
# Test code here
Properties
Modifier and Type Member Description
public readonly property category
category as String = null
Optional category used to group the test class.
public readonly property description
description as String = null
Optional human-readable description of the test class.
Constructors
Modifier and Type Member Description
public TestClass
TestClass(category as String = null, description as String = null):
Creates test-class metadata.