os/ossrv/genericopenlibs/cppstdlib/stl/test/eh/Tests.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
/***********************************************************************************
sl@0
     2
  Tests.h
sl@0
     3
sl@0
     4
 * Copyright (c) 1997
sl@0
     5
 * Mark of the Unicorn, Inc.
sl@0
     6
 *
sl@0
     7
 * Permission to use, copy, modify, distribute and sell this software
sl@0
     8
 * and its documentation for any purpose is hereby granted without fee,
sl@0
     9
 * provided that the above copyright notice appear in all copies and
sl@0
    10
 * that both that copyright notice and this permission notice appear
sl@0
    11
 * in supporting documentation.  Mark of the Unicorn makes no
sl@0
    12
 * representations about the suitability of this software for any
sl@0
    13
 * purpose.  It is provided "as is" without express or implied warranty.
sl@0
    14
sl@0
    15
    SUMMARY: Declarations of all of the tests in the exception test suite.
sl@0
    16
sl@0
    17
***********************************************************************************/
sl@0
    18
#if ! defined (INCLUDED_MOTU_Tests)
sl@0
    19
#define INCLUDED_MOTU_Tests 1
sl@0
    20
sl@0
    21
#include "Prefix.h"
sl@0
    22
sl@0
    23
void test_algobase();
sl@0
    24
void test_algo();
sl@0
    25
void test_list();
sl@0
    26
void test_map();
sl@0
    27
void test_multimap();
sl@0
    28
void test_set();
sl@0
    29
void test_multiset();
sl@0
    30
void test_vector();
sl@0
    31
void test_deque();
sl@0
    32
void test_bit_vector();
sl@0
    33
sl@0
    34
#if defined (EH_HASHED_CONTAINERS_IMPLEMENTED)
sl@0
    35
void test_hash_map();
sl@0
    36
void test_hash_multimap();
sl@0
    37
void test_hash_set();
sl@0
    38
void test_hash_multiset();
sl@0
    39
#endif
sl@0
    40
sl@0
    41
#if defined (EH_ROPE_IMPLEMENTED)
sl@0
    42
void test_rope();
sl@0
    43
#endif
sl@0
    44
sl@0
    45
#if defined( EH_SLIST_IMPLEMENTED )
sl@0
    46
void test_slist();
sl@0
    47
#endif
sl@0
    48
sl@0
    49
#if defined( EH_STRING_IMPLEMENTED )
sl@0
    50
void test_string();
sl@0
    51
#endif
sl@0
    52
#if defined( EH_BITSET_IMPLEMENTED )
sl@0
    53
void test_bitset();
sl@0
    54
#endif
sl@0
    55
#if defined( EH_VALARRAY_IMPLEMENTED )
sl@0
    56
void test_valarray();
sl@0
    57
#endif
sl@0
    58
sl@0
    59
#endif // INCLUDED_MOTU_Tests