Parallel Analog Ensemble
testStation.h
Go to the documentation of this file.
1/*
2 * File: testStation.h
3 * Author: Weiming Hu (weiming@psu.edu)
4 *
5 * Created on May 30, 2018, 1:39:24 PM
6 */
7
8#ifndef TESTSTATION_H
9#define TESTSTATION_H
10
11#include <cppunit/extensions/HelperMacros.h>
12
13#include "Stations.h"
14
15class testStation : public CPPUNIT_NS::TestFixture {
17
18 // Add our tests here
21
23
24public:
26 virtual ~testStation();
27
28private:
31};
32
33#endif /* TESTSTATION_H */
34
Definition: testStation.h:15
void testStationComparison_()
Definition: testStation.cpp:23
testStation()
Definition: testStation.cpp:16
CPPUNIT_TEST(testStationAssignment_)
virtual ~testStation()
Definition: testStation.cpp:19
CPPUNIT_TEST_SUITE_END()
CPPUNIT_TEST(testStationComparison_)
CPPUNIT_TEST_SUITE(testStation)
void testStationAssignment_()
Definition: testStation.cpp:45