ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-3.0/test/utils/ReplaceWildCardTestCase.hpp
Revision: 1660
Committed: Thu Oct 28 02:08:11 2004 UTC (19 years, 8 months ago) by tim
File size: 474 byte(s)
Log Message:
Adding Test Case for ReplaceWildCard

File Contents

# User Rev Content
1 tim 1660 #ifndef TEST_REPLACEWILDCARDTESTCASE_HPP
2     #define TEST_REPLACEWILDCARDTESTCASE_HPP
3    
4     #include <cppunit/extensions/HelperMacros.h>
5     #include "utils/ReplaceWildCard.hpp"
6    
7     using namespace oopse;
8    
9     class ReplaceWildCardTestCase : public CPPUNIT_NS::TestFixture {
10     CPPUNIT_TEST_SUITE( ReplaceWildCardTestCase );
11     CPPUNIT_TEST(testReplaceWildCard);
12     CPPUNIT_TEST_SUITE_END();
13    
14     public:
15    
16     void testReplaceWildCard();
17     };
18    
19    
20     #endif //TEST_REPLACEWILDCARDTESTCASE_HPP
21