// BMPTranslatorTest.h #ifndef BMP_TRANSLATOR_TEST_H #define BMP_TRANSLATOR_TEST_H #include #include #define BBT_MIME_STRING "image/x-be-bitmap" #define BMP_MIME_STRING "image/x-bmp" namespace CppUnit { class Test; } class BMPTranslatorTest : public BTestCase { public: static CppUnit::Test* Suite(); // This function called before *each* test added in Suite() void setUp(); // This function called after *each* test added in Suite() void tearDown(); //------------------------------------------------------------ // Test functions //------------------------------------------------------------ #if !TEST_R5 void LoadAddOnTest(); #endif void IdentifyTest(); void TranslateTest(); void ConfigMessageTest(); }; #endif // BMP_TRANSLATOR_TEST_H