|
Collection of tests. Provides API for environment preparation. More...
Public Member Functions | |
| proto external void | SetResult (TestResultBase res) |
| Sets the suite result. | |
| proto external void | SetEnabled (bool val) |
| Enables/Disables the suites. Disabled suites won't run at all. | |
| proto external bool | IsEnabled () |
| Enabled flag getter. | |
| proto external int | GetNTests () |
| Returns the number for tests within this suite. | |
| proto external TestBase | GetTest (int handle) |
| Returns a test. | |
| proto external string | GetName () |
| Suite class name getter. Strictly for UI porposes! | |
| proto external void | AddTest (notnull TestBase test) |
Public Member Functions inherited from Managed | |
| proto external ref Managed | Clone () |
| Return shallow copy of object, or null if it is not allowed (not public constructor) | |
Collection of tests. Provides API for environment preparation.
| proto external void TestSuite.AddTest | ( | notnull TestBase | test | ) |
| proto external string TestSuite.GetName | ( | ) |
Suite class name getter. Strictly for UI porposes!
| proto external int TestSuite.GetNTests | ( | ) |
Returns the number for tests within this suite.
| proto external bool TestSuite.IsEnabled | ( | ) |
Enabled flag getter.
| proto external void TestSuite.SetEnabled | ( | bool | val | ) |
Enables/Disables the suites. Disabled suites won't run at all.
| proto external void TestSuite.SetResult | ( | TestResultBase | res | ) |
Sets the suite result.
Failure can result in specialized behavior described in TestResultBase.