]> git.localhorst.tv Git - blank.git/blobdiff - tst/integration/InvocationTest.hpp
test for invoking with unknown argument
[blank.git] / tst / integration / InvocationTest.hpp
diff --git a/tst/integration/InvocationTest.hpp b/tst/integration/InvocationTest.hpp
new file mode 100644 (file)
index 0000000..cca53dd
--- /dev/null
@@ -0,0 +1,30 @@
+#ifndef BLANK_TEST_INTEGRATION_INVOCATIONTEST_HPP_
+#define BLANK_TEST_INTEGRATION_INVOCATIONTEST_HPP_
+
+#include <cppunit/extensions/HelperMacros.h>
+
+
+namespace blank {
+namespace test {
+
+class InvocationTest
+: public CppUnit::TestFixture {
+
+CPPUNIT_TEST_SUITE(InvocationTest);
+
+CPPUNIT_TEST(testUnknownArg);
+
+CPPUNIT_TEST_SUITE_END();
+
+public:
+       void setUp();
+       void tearDown();
+
+       void testUnknownArg();
+
+};
+
+}
+}
+
+#endif