source: test/unit_test/dirichlet_cs.hpp@ d24c2f

Last change on this file since d24c2f was 48b662, checked in by Olaf Lenz <olenz@…>, 14 years ago

Moved files in scafacos_fcs one level up.

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

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