]> git.localhorst.tv Git - blank.git/blob - tst/app/ProcessTest.hpp
timeouts reading from spawned processes
[blank.git] / tst / app / ProcessTest.hpp
1 #ifndef BLANK_TEST_APP_PROCESSTEST_HPP_
2 #define BLANK_TEST_APP_PROCESSTEST_HPP_
3
4 #include <cppunit/extensions/HelperMacros.h>
5
6
7 namespace blank {
8 namespace test {
9
10 class ProcessTest
11 : public CppUnit::TestFixture {
12
13 CPPUNIT_TEST_SUITE(ProcessTest);
14
15 CPPUNIT_TEST(testExit);
16 CPPUNIT_TEST(testStream);
17 CPPUNIT_TEST(testEnv);
18 CPPUNIT_TEST(testTimeout);
19
20 CPPUNIT_TEST_SUITE_END();
21
22 public:
23         void setUp();
24         void tearDown();
25
26         void testExit();
27         void testStream();
28         void testEnv();
29         void testTimeout();
30
31 };
32
33 }
34 }
35
36 #endif