xref: /haiku/src/tests/add-ons/translators/bmptranslator/BMPTranslatorTest.h (revision 893988af824e65e49e55f517b157db8386e8002b)
1 // BMPTranslatorTest.h
2 
3 #ifndef BMP_TRANSLATOR_TEST_H
4 #define BMP_TRANSLATOR_TEST_H
5 
6 #include <TestCase.h>
7 #include <TestShell.h>
8 
9 #define BBT_MIME_STRING  "image/x-be-bitmap"
10 #define BMP_MIME_STRING "image/x-bmp"
11 
12 namespace CppUnit {
13 class Test;
14 }
15 
16 class BMPTranslatorTest : public BTestCase {
17 public:
18 	static CppUnit::Test* Suite();
19 
20 	// This function called before *each* test added in Suite()
21 	void setUp();
22 
23 	// This function called after *each* test added in Suite()
24 	void tearDown();
25 
26 	//------------------------------------------------------------
27 	// Test functions
28 	//------------------------------------------------------------
29 #if !TEST_R5
30 	void LoadAddOnTest();
31 #endif
32 	void IdentifyTest();
33 	void TranslateTest();
34 	void ConfigMessageTest();
35 };
36 
37 #endif	// BMP_TRANSLATOR_TEST_H
38