source: test/unit_test/dirichlet_fas.hpp@ 48b662

Last change on this file since 48b662 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: 535 bytes
Line 
1/*
2 * dirichlet_fas.hpp
3 *
4 * Created on: 25.01.2011
5 * Author: Julian Iseringhausen
6 */
7
8#ifndef DIRICHLET_FAS_HPP_
9#define DIRICHLET_FAS_HPP_
10
11#include <cppunit/TestFixture.h>
12#include <cppunit/extensions/HelperMacros.h>
13
14namespace VMGTests
15{
16
17class DirichletFASTestSuite : public CppUnit::TestFixture
18{
19 CPPUNIT_TEST_SUITE(DirichletFASTestSuite);
20 CPPUNIT_TEST(DirichletFASTest);
21 CPPUNIT_TEST_SUITE_END();
22
23public:
24 void setUp();
25 void tearDown();
26
27protected:
28 void DirichletFASTest();
29};
30
31}
32
33#endif /* DIRICHLET_FAS_HPP_ */
Note: See TracBrowser for help on using the repository browser.