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