1
0

TestTools.h 502 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * TestTools.h
  3. * -----------
  4. * Purpose: Unit test framework.
  5. * Notes :
  6. * Authors: OpenMPT Devs
  7. * The OpenMPT source code is released under the BSD license. Read LICENSE for more details.
  8. */
  9. #pragma once
  10. #include "openmpt/all/BuildSettings.hpp"
  11. #include "TestToolsTracker.h"
  12. #include "TestToolsLib.h"
  13. #include "../common/mptPathString.h"
  14. OPENMPT_NAMESPACE_BEGIN
  15. #ifdef ENABLE_TESTS
  16. namespace Test
  17. {
  18. mpt::PathString GetPathPrefix();
  19. } // namespace Test
  20. OPENMPT_NAMESPACE_END
  21. #endif