source: test/unit_test/smoother_test.hpp@ dfed1c

Last change on this file since dfed1c 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: 700 bytes
RevLine 
[48b662]1/*
2 * smoother_test.hpp
3 *
4 * Created on: 20.09.2010
5 * Author: Julian Iseringhausen
6 */
7
8#ifndef SMOOTHER_TEST_HPP_
9#define SMOOTHER_TEST_HPP_
10
11#include <cppunit/TestFixture.h>
12#include <cppunit/extensions/HelperMacros.h>
13
14namespace VMG
15{
16class Smoother;
17class Stencil;
18class Comm;
19}
20
21namespace VMGTests
22{
23
24class SmootherTestSuite : public CppUnit::TestFixture
25{
26 CPPUNIT_TEST_SUITE(SmootherTestSuite);
27 CPPUNIT_TEST(GaussSeidelLEXTest);
28 CPPUNIT_TEST(GaussSeidelRBTest);
29 CPPUNIT_TEST_SUITE_END();
30
31public:
32 void setUp();
33 void tearDown();
34
35protected:
36 void GaussSeidelLEXTest();
37 void GaussSeidelRBTest();
38
39private:
40 VMG::Smoother *gs, *gsrb;
41};
42
43}
44
45#endif /* SMOOTHER_TEST_HPP_ */
Note: See TracBrowser for help on using the repository browser.