PlasCom2  1.0
XPACC Multi-physics simluation application
ParallelTesting.H
Go to the documentation of this file.
1 #ifndef __PARALLEL_TESTING_H__
7 #define __PARALLEL_TESTING_H___
8 
9 #include "Testing.H"
10 
11 namespace ix {
12 
13  namespace test {
14 
15  template<typename CommType = comm::CommunicatorObject,
16  typename ResultsType = test::results>
17  class parallelmanager : public test::manager<ResultsType>
18  {
19  protected:
21  public:
22  parallelmanager(CommType &inComm) : test::manager<ResultsType>(),
23  globalCommunicator(inComm)
24  {};
25  parallelmanager() : test::manager<ResultsType>()
26  {};
27  };
28 
29 
30  };
31 };
32 #endif
Defines MPI-specific parallel global and program classes.
parallelmanager(CommType &inComm)
Encapsulating class for collections of test results.
Definition: Testing.H:18
Main encapsulation of MPI.
Definition: COMM.H:62
Testing constructs for unit testing.
Interface for a general testing object.
Definition: Testing.H:84