]> git.localhorst.tv Git - blank.git/blobdiff - tst/app/ProcessTest.hpp
Process
[blank.git] / tst / app / ProcessTest.hpp
diff --git a/tst/app/ProcessTest.hpp b/tst/app/ProcessTest.hpp
new file mode 100644 (file)
index 0000000..972fbe5
--- /dev/null
@@ -0,0 +1,32 @@
+#ifndef BLANK_TEST_APP_PROCESSTEST_HPP_
+#define BLANK_TEST_APP_PROCESSTEST_HPP_
+
+#include <cppunit/extensions/HelperMacros.h>
+
+
+namespace blank {
+namespace test {
+
+class ProcessTest
+: public CppUnit::TestFixture {
+
+CPPUNIT_TEST_SUITE(ProcessTest);
+
+CPPUNIT_TEST(testExit);
+CPPUNIT_TEST(testStream);
+
+CPPUNIT_TEST_SUITE_END();
+
+public:
+       void setUp();
+       void tearDown();
+
+       void testExit();
+       void testStream();
+
+};
+
+}
+}
+
+#endif