source: test/unit_test/periodic_cs.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: 527 bytes
RevLine 
[48b662]1/*
2 * periodic_cs.hpp
3 *
4 * Created on: Oct 20, 2010
5 * Author: Julian Iseringhausen
6 */
7
8#ifndef PERIODIC_CS_HPP_
9#define PERIODIC_CS_HPP_
10
11#include <cppunit/TestFixture.h>
12#include <cppunit/extensions/HelperMacros.h>
13
14namespace VMGTests
15{
16
17class PeriodicCSTestSuite : public CppUnit::TestFixture
18{
19 CPPUNIT_TEST_SUITE(PeriodicCSTestSuite);
20 CPPUNIT_TEST(PeriodicCSTest);
21 CPPUNIT_TEST_SUITE_END();
22
23public:
24 void setUp();
25 void tearDown();
26
27protected:
28 void PeriodicCSTest();
29};
30
31}
32
33#endif /* PERIODIC_CS_HPP_ */
Note: See TracBrowser for help on using the repository browser.