Files
haiku-beta6/src/tests/kits/storage/ParserTest.h
T
Tyler Dauwalder 395d31a081 Started on parser tests, which so far are shaping up
to be very similar to the BMimeType::Sniffer tests... :-)
These tests have the added bonus of not need full
BMimeType/Registrar functionality, though.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@534 a95241bf-73f2-0310-859d-f6bbb57e9c96
2002-07-29 07:05:49 +00:00

26 lines
560 B
C++

// ParserTest.h
#ifndef __sk_parser_test_h__
#define __sk_parser_test_h__
#include <TestCase.h>
class ParserTest : public BTestCase {
public:
static CppUnit::Test* Suite();
//------------------------------------------------------------
// Test functions
//------------------------------------------------------------
void ScannerTest();
void ParserEngineTest();
//------------------------------------------------------------
// Helper functions
//------------------------------------------------------------
};
#endif // __sk_parser_test_h__