Parallel Analog Ensemble
testTxt.h
Go to the documentation of this file.
1/*
2 * File: testTxt.h
3 * Author: Weiming Hu <weiming@psu.edu>
4 *
5 * Created on Mar 14, 2021, 17:11
6 */
7
8#ifndef TESTTXT_H
9#define TESTTXT_H
10
11#include <cppunit/extensions/HelperMacros.h>
12#include "Txt.h"
13
14class testTxt : public CPPUNIT_NS::TestFixture {
16
18
20
21public:
22 testTxt();
23 virtual ~testTxt();
24
25private:
26 void testReadLines_();
27};
28
29#endif /* TESTTXT_H */
30
Definition: testTxt.h:14
testTxt()
Definition: testTxt.cpp:19
CPPUNIT_TEST_SUITE(testTxt)
CPPUNIT_TEST_SUITE_END()
void testReadLines_()
Definition: testTxt.cpp:26
virtual ~testTxt()
Definition: testTxt.cpp:22
CPPUNIT_TEST(testReadLines_)