indexing description: "[ Objects representing an active collection of tests. ]" author: "" date: "$Date$" revision: "$Revision$" deferred class EIFFEL_TEST_COLLECTION inherit EIFFEL_TEST_COLLECTION_I EVENT_OBSERVER_CONNECTION [!ACTIVE_COLLECTION_OBSERVER [!EIFFEL_TEST_I]] feature {NONE} -- Initialization make is -- Initialize `Current' do create test_added_event create test_removed_event create test_changed_event create tests_reset_event end feature -- Events test_added_event: !EVENT_TYPE [TUPLE [collection: !ACTIVE_COLLECTION_I [!EIFFEL_TEST_I]; active: !EIFFEL_TEST_I]] -- test_removed_event: !EVENT_TYPE [TUPLE [collection: !ACTIVE_COLLECTION_I [!EIFFEL_TEST_I]; active: !EIFFEL_TEST_I]] -- test_changed_event: !EVENT_TYPE [TUPLE [collection: !ACTIVE_COLLECTION_I [!EIFFEL_TEST_I]; active: !EIFFEL_TEST_I]] -- tests_reset_event: !EVENT_TYPE [TUPLE [collection: !ACTIVE_COLLECTION_I [!EIFFEL_TEST_I]]] -- end