You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

37 lines
539 B

  1. #ifndef TESTNOBOOST_H
  2. #define TESTNOBOOST_H
  3. namespace noboost {
  4. #define ASSIMP_FORCE_NOBOOST
  5. #include "..\..\code\BoostWorkaround\boost\format.hpp"
  6. using boost::format;
  7. using boost::str;
  8. }
  9. using namespace std;
  10. using namespace Assimp;
  11. class NoBoostTest : public CPPUNIT_NS :: TestFixture
  12. {
  13. CPPUNIT_TEST_SUITE (NoBoostTest);
  14. CPPUNIT_TEST (testFormat);
  15. CPPUNIT_TEST_SUITE_END ();
  16. public:
  17. void setUp (void) {
  18. }
  19. void tearDown (void) {
  20. }
  21. protected:
  22. void testFormat (void);
  23. private:
  24. };
  25. #endif