Sha256: 73c104bd1f8cc08a997c51bf25fed59f119d214cf573941fa4786d94461e32c1
Contents?: true
Size: 426 Bytes
Versions: 10
Compression:
Stored size: 426 Bytes
Contents
#ifndef suite2_h_ #define suite2_h_ #include <cppunit/TestCase.h> #include <cppunit/extensions/HelperMacros.h> class Suite2 : public CppUnit::TestFixture { public: void setUp() { } void tearDown() { } void test2() { printf("inside test2\n"); CPPUNIT_ASSERT_MESSAGE( "hat auch geklappt", true ); } CPPUNIT_TEST_SUITE( Suite2 ); CPPUNIT_TEST( test2 ); CPPUNIT_TEST_SUITE_END(); }; #endif
Version data entries
10 entries across 10 versions & 1 rubygems