FEI  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
test_Vector.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_Vector_hpp_
10 #define _test_Vector_hpp_
11 
12 #include <fei_macros.hpp>
13 
14 #include <fei_defs.h>
15 
16 #include <test_utils/tester.hpp>
17 
18 #include <test_utils/testData.hpp>
19 
20 #include <fei_SharedPtr.hpp>
21 #include <fei_Vector.hpp>
22 #include <fei_Factory.hpp>
23 
26 class test_Vector : public tester {
27  public:
28  test_Vector(MPI_Comm comm);
29  virtual ~test_Vector();
30 
31  const char* getName()
32  {
33  static const char name[] = "fei::Vector";
34  return((const char*)name);
35  }
36 
37  int runtests();
38 
40 
41  void vector_test1(fei::SharedPtr<fei::Vector> fei_vec);
42 };
43 
44 
45 #endif // _test_Vector_hpp_
const char * getName()
Definition: test_Vector.hpp:31