note description: "Objects that represent bunch of ES_TESTs (unit tests)." author: "Software Engineering Lab, York University" class interface ES_SUITE create default_create feature -- Basic Operations add_test (unit_test_class: ES_TEST) -- Adds class level test unit_test_class to Current test suite -- use this feature to add your unit test classes to the suite. require unit_tests_class_exists: unit_test_class /= Void add_suite (suite_test_class: ES_SUITE) -- Adds a suite of tests to the current suite. require suite_test_class_exists: suite_test_class /= Void end -- class ES_SUITE
Generated by ISE EiffelStudio