Zoltan2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Zoltan2_Tests.hpp
Go to the documentation of this file.
1 //
2 // Zoltan2_Tests.h
3 // Zoltan2TestDriver
4 //
5 // Created by Bradley Davidson on 7/6/15.
6 // Copyright (c) 2015 TXCorp. All rights reserved.
7 //
8 
9 #ifndef Zoltan2TestDriver_Zoltan2_Tests_h
10 #define Zoltan2TestDriver_Zoltan2_Tests_h
11 
13 #include <string>
14 using std::string;
15 Zoltan2Test * getZoltan2Test(const string &testType)
16 {
17  if(testType.find("MeshCoordinateTest") != string::npos)
18  {
19  return new MeshCoordinateTest();
20  }
21 
22  return nullptr;
23 }
24 #endif
Zoltan2Test * getZoltan2Test(const string &testType)