source: test/unit_test/dirichlet_cs_mpi.hpp@ dfed1c

Last change on this file since dfed1c was dfed1c, checked in by Julian Iseringhausen <isering@…>, 14 years ago

Major vmg update.

git-svn-id: https://svn.version.fz-juelich.de/scafacos/trunk@1136 5161e1c8-67bf-11de-9fd5-51895aff932f

  • Property mode set to 100644
File size: 555 bytes
Line 
1/*
2 * dirichlet_cs_mpi.hpp
3 *
4 * Created on: 25.01.2011
5 * Author: Julian Iseringhausen
6 */
7
8#ifndef DIRICHLET_CS_MPI_HPP_
9#define DIRICHLET_CS_MPI_HPP_
10
11#include <cppunit/TestFixture.h>
12#include <cppunit/extensions/HelperMacros.h>
13
14namespace VMGTests
15{
16
17class DirichletCSMPITestSuite : public CppUnit::TestFixture
18{
19 CPPUNIT_TEST_SUITE(DirichletCSMPITestSuite);
20 CPPUNIT_TEST(DirichletCSMPITest);
21 CPPUNIT_TEST_SUITE_END();
22
23public:
24 void setUp();
25 void tearDown();
26
27protected:
28 void DirichletCSMPITest();
29};
30
31}
32
33#endif /* DIRICHLET_CS_MPI_HPP_ */
Note: See TracBrowser for help on using the repository browser.