axlGetTests
axlGetTests(x_hsdb) =>l_tests/ nil
Description
Returns a list containing a handle to all tests in the setup database and a list of all test names.
Arguments
Value Returned
|
List containing a handle to all tests in the setup database and a list of all test names. |
|
Examples
The following example retrieves a list containing a handle to all tests in the data_sdb setup database and a list of all test names.
data_sdb = axlGetMainSetupDB(axlGetWindowSession())
;; Disable tests
foreach( test cadr( axlGetTests( data_sdb ) )
axlSetEnabled( axlGetTest( data_sdb test ) nil )
'((1011 "Trans_12u")
(1021 "dc_ac10G_2")
)
Related Topics
Return to top