Skip to content
Snippets Groups Projects
ParamPassTest.h 373 B
Newer Older
  • Learn to ignore specific revisions
  • #ifndef PARAM_PASS_TEST_H_
    #define PARAM_PASS_TEST_H_
    
    #include <cppunit/extensions/HelperMacros.h>
    
    class ParamPassTest : public CppUnit::TestFixture {
    	CPPUNIT_TEST_SUITE ( ParamPassTest );
    	CPPUNIT_TEST ( testParameterPassing );
    	CPPUNIT_TEST_SUITE_END ( );
    
    public:
    	void setUp ( );
    	void tearDown ( );
    
    	void testParameterPassing ( );
    };
    
    #endif // PARAM_PASS_TEST_H_