Parallel Analog Ensemble
testStations.h
Go to the documentation of this file.
1/*
2 * File: testStations.h
3 * Author: Weiming Hu <weiming@psu.edu>
4 *
5 * Created on May 30, 2018, 2:40:21 PM
6 */
7
8#ifndef TESTSTATIONS_H
9#define TESTSTATIONS_H
10
11#include <cppunit/extensions/HelperMacros.h>
12
13class testStations : public CPPUNIT_NS::TestFixture {
15
19
21
22public:
24 virtual ~testStations();
25
26private:
27 void testShift_();
28 void testUnique_();
29 void testSubset_();
30};
31
32#endif /* TESTSTATIONS_H */
33
Definition: testStations.h:13
void testSubset_()
Definition: testStations.cpp:99
virtual ~testStations()
Definition: testStations.cpp:28
CPPUNIT_TEST_SUITE_END()
CPPUNIT_TEST(testShift_)
testStations()
Definition: testStations.cpp:25
CPPUNIT_TEST(testSubset_)
CPPUNIT_TEST_SUITE(testStations)
void testUnique_()
Definition: testStations.cpp:62
CPPUNIT_TEST(testUnique_)
void testShift_()
Definition: testStations.cpp:32