added TIFFTranslator Tests

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2888 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Matthew Wilber 2003-03-12 00:55:01 +00:00
parent 129a87e630
commit 0ef3968843
2 changed files with 5 additions and 1 deletions

View File

@ -3,11 +3,13 @@ SubDir OBOS_TOP src tests add-ons translators ;
# Let Jam know where to find some of our source files
SEARCH_SOURCE += [ FDirName $(SUBDIR) bmptranslator ] ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) stxttranslator ] ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) tifftranslator ] ;
CommonTestLib libtranslatorstest.so
: TranslatorTestAddOn.cpp
BMPTranslatorTest.cpp
STXTTranslatorTest.cpp
TIFFTranslatorTest.cpp
: libtranslation.so be stdc++.r4
: translation be stdc++.r4
:

View File

@ -4,6 +4,7 @@
// ##### Include headers for your tests here #####
#include "bmptranslator/BMPTranslatorTest.h"
#include "stxttranslator/STXTTranslatorTest.h"
#include "tifftranslator/TIFFTranslatorTest.h"
BTestSuite *
getTestSuite()
@ -13,6 +14,7 @@ getTestSuite()
// ##### Add test suites here #####
suite->addTest("BMPTranslator", BMPTranslatorTest::Suite());
suite->addTest("STXTTranslator", STXTTranslatorTest::Suite());
suite->addTest("TIFFTranslator", TIFFTranslatorTest::Suite());
return suite;
}