sl@0: /***********************************************************************************
sl@0:   Tests.h
sl@0: 
sl@0:  * Copyright (c) 1997
sl@0:  * Mark of the Unicorn, Inc.
sl@0:  *
sl@0:  * Permission to use, copy, modify, distribute and sell this software
sl@0:  * and its documentation for any purpose is hereby granted without fee,
sl@0:  * provided that the above copyright notice appear in all copies and
sl@0:  * that both that copyright notice and this permission notice appear
sl@0:  * in supporting documentation.  Mark of the Unicorn makes no
sl@0:  * representations about the suitability of this software for any
sl@0:  * purpose.  It is provided "as is" without express or implied warranty.
sl@0: 
sl@0:     SUMMARY: Declarations of all of the tests in the exception test suite.
sl@0: 
sl@0: ***********************************************************************************/
sl@0: #if ! defined (INCLUDED_MOTU_Tests)
sl@0: #define INCLUDED_MOTU_Tests 1
sl@0: 
sl@0: #include "Prefix.h"
sl@0: 
sl@0: void test_algobase();
sl@0: void test_algo();
sl@0: void test_list();
sl@0: void test_map();
sl@0: void test_multimap();
sl@0: void test_set();
sl@0: void test_multiset();
sl@0: void test_vector();
sl@0: void test_deque();
sl@0: void test_bit_vector();
sl@0: 
sl@0: #if defined (EH_HASHED_CONTAINERS_IMPLEMENTED)
sl@0: void test_hash_map();
sl@0: void test_hash_multimap();
sl@0: void test_hash_set();
sl@0: void test_hash_multiset();
sl@0: #endif
sl@0: 
sl@0: #if defined (EH_ROPE_IMPLEMENTED)
sl@0: void test_rope();
sl@0: #endif
sl@0: 
sl@0: #if defined( EH_SLIST_IMPLEMENTED )
sl@0: void test_slist();
sl@0: #endif
sl@0: 
sl@0: #if defined( EH_STRING_IMPLEMENTED )
sl@0: void test_string();
sl@0: #endif
sl@0: #if defined( EH_BITSET_IMPLEMENTED )
sl@0: void test_bitset();
sl@0: #endif
sl@0: #if defined( EH_VALARRAY_IMPLEMENTED )
sl@0: void test_valarray();
sl@0: #endif
sl@0: 
sl@0: #endif // INCLUDED_MOTU_Tests