1 // MimeSnifferTest.h 2 3 #ifndef __sk_parser_test_h__ 4 #define __sk_parser_test_h__ 5 6 #include <TestCase.h> 7 8 class MimeSnifferTest : public BTestCase { 9 public: 10 static CppUnit::Test* Suite(); 11 12 //------------------------------------------------------------ 13 // Test functions 14 //------------------------------------------------------------ 15 void ScannerTest(); 16 void ParserTest(); 17 void SnifferTest(); 18 19 //------------------------------------------------------------ 20 // Helper functions 21 //------------------------------------------------------------ 22 23 }; 24 25 26 #endif // __sk_parser_test_h__ 27