X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=tst%2Fintegration%2FInvocationTest.hpp;fp=tst%2Fintegration%2FInvocationTest.hpp;h=cca53dd52afcff0501c31053b89cc740f728ba49;hb=307482574d3acac09e38263de521a1826ceec7ce;hp=0000000000000000000000000000000000000000;hpb=fd86376a8e7d3f1b09be3d018f772ef884937238;p=blank.git diff --git a/tst/integration/InvocationTest.hpp b/tst/integration/InvocationTest.hpp new file mode 100644 index 0000000..cca53dd --- /dev/null +++ b/tst/integration/InvocationTest.hpp @@ -0,0 +1,30 @@ +#ifndef BLANK_TEST_INTEGRATION_INVOCATIONTEST_HPP_ +#define BLANK_TEST_INTEGRATION_INVOCATIONTEST_HPP_ + +#include + + +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