FEI Version of the Day
Loading...
Searching...
No Matches
test_Set.hpp
1/*--------------------------------------------------------------------*/
2/* Copyright 2005 Sandia Corporation. */
3/* Under the terms of Contract DE-AC04-94AL85000, there is a */
4/* non-exclusive license for use of this work by or on behalf */
5/* of the U.S. Government. Export of this program may require */
6/* a license from the United States Government. */
7/*--------------------------------------------------------------------*/
8
9#ifndef _test_Set_hpp_
10#define _test_Set_hpp_
11
12#include <fei_macros.hpp>
13
14#include <fei_defs.h>
15
16#include <test_utils/tester.hpp>
17
20class test_Set : public tester {
21 public:
22 test_Set(MPI_Comm comm);
23 virtual ~test_Set();
24
25 const char* getName()
26 {
27 static const char name[] =
28 "fei::ctg_set<int>, fei::binarySearch, etc.";
29 return((const char*)name);
30 }
31
32 int runtests();
33
34 int test1();
35
36 int test2();
37
38 int test3();
39
40 int test4();
41
42 int test5();
43
44 int test6();
45
46 int test7();
47
48 int test8();
49
50 int test9();
51};
52
53#endif // _test_Set_hpp_
const char * getName()
Definition test_Set.hpp:25