src.tests.vl3d_test
Classes
|
Exceptions
|
- exception src.tests.vl3d_test.VL3DTestException(message='')
- Author:
Alberto M. Esmoris Pena
Class for exceptions related to tests. See
VL3DException.- __init__(message='')
- class src.tests.vl3d_test.VL3DTest(name='VL3D test')
- Author:
Alberto M. Esmoris Pena
Base implementation for any VL3D test. It must be extended by classes aiming to provide runnable tests. Each derived class must overload the run method to implement the test’s logic.
- Variables:
name (str) – The name of the test.
- __init__(name='VL3D test')
Basic configuration for any VL3D test.
- Parameters:
name (str) – Test name
- run()
Run the test.
- Returns:
True if test is successfully passed, False otherwise.
- Return type:
bool