headers/bsd: Add sys/queue.h.
[haiku.git] / src / tests / add-ons / translators / pngtranslator / PNGTranslatorTest.h
blob8c37c49784f5b72f86458e6f3b2e9840466effa2
1 // PNGTranslatorTest.h
3 #ifndef PNG_TRANSLATOR_TEST_H
4 #define PNG_TRANSLATOR_TEST_H
6 #include <TestCase.h>
7 #include <TestShell.h>
9 #define BBT_MIME_STRING "image/x-be-bitmap"
10 #define PNG_MIME_STRING "image/png"
12 namespace CppUnit {
13 class Test;
16 class PNGTranslatorTest : public BTestCase {
17 public:
18 static CppUnit::Test* Suite();
20 // This function called before *each* test added in Suite()
21 void setUp();
23 // This function called after *each* test added in Suite()
24 void tearDown();
26 //------------------------------------------------------------
27 // Test functions
28 //------------------------------------------------------------
29 #if !TEST_R5
30 void LoadAddOnTest();
31 #endif
32 void IdentifyTest();
33 void TranslateTest();
36 #endif // PNG_TRANSLATOR_TEST_H