hkUnitTest.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:3k
源码类别:

其他游戏

开发平台:

Visual C++

  1. /* 
  2.  * 
  3.  * Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's
  4.  * prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok.
  5.  * Level 2 and Level 3 source code contains trade secrets of Havok. Havok Software (C) Copyright 1999-2009 Telekinesys Research Limited t/a Havok. All Rights Reserved. Use of this software is subject to the terms of an end user license agreement.
  6.  * 
  7.  */
  8. #ifndef HK_BASE_UNITTEST_H
  9. #define HK_BASE_UNITTEST_H
  10. #include <Common/Base/Config/hkConfigVersion.h>
  11. #include <Common/Base/System/Error/hkDefaultError.h>
  12. #if defined( HK_COMPILER_MWERKS ) && (HAVOK_BUILD_NUMBER != 0)
  13. // Disable on CodeWarrior platforms
  14. #define HK_TEST(CONDITION) /* nothing */
  15. #define HK_TEST2(CONDITION,DESCRIPTION) /* nothing */
  16. #define HK_TEST_REGISTER(func, category, menu, path) /* nothing */
  17. #else
  18. extern hkBool HK_CALL hkTestReport(hkBool32 cond, const char* desc, const char* file, int line);
  19. /************* PUBLIC *******************/
  20. #define HK_TEST(CONDITION)  hkTestReport( (CONDITION), #CONDITION, __FILE__, __LINE__)
  21. #define HK_TEST2(CONDITION,DESCRIPTION)  do {
  22. char msgBuf[512];
  23. hkOstream msg(msgBuf, sizeof(msgBuf), true);
  24. msg << #CONDITION  << " (" << DESCRIPTION << ')'; 
  25. hkTestReport( (CONDITION), msgBuf, __FILE__, __LINE__); 
  26. } while(0)
  27. #define HK_TEST_REGISTER(func, category, menu, path) hkTestEntry register ## func (func, #func, category, menu path)
  28. #endif
  29. /************* INTERNAL USE ONLY *******************/
  30. extern struct hkTestEntry* hkUnitTestDatabase;
  31. struct hkTestEntry
  32. {
  33. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_BASE_CLASS, hkTestEntry );
  34. typedef int (*hkTestFunction)();
  35. inline hkTestEntry(hkTestFunction func, const char* name, const char* cat, const char* path)
  36. : m_func(func), m_name(name), m_category(cat), m_path(path)
  37. {
  38. m_next = hkUnitTestDatabase;
  39. hkUnitTestDatabase = this;
  40. }
  41. ~hkTestEntry() { }
  42. hkTestFunction m_func;
  43. const char* m_name;
  44. const char* m_category;
  45. const char* m_path;
  46. hkTestEntry* m_next;
  47. };
  48. class TestDemo;
  49. #endif // HK_TEST_UNITTEST_REGISTERTEST_H
  50. /*
  51. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  52. * Confidential Information of Havok.  (C) Copyright 1999-2009
  53. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  54. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  55. * rights, and intellectual property rights in the Havok software remain in
  56. * Havok and/or its suppliers.
  57. * Use of this software for evaluation purposes is subject to and indicates
  58. * acceptance of the End User licence Agreement for this product. A copy of
  59. * the license is included with this software and is also available at www.havok.com/tryhavok.
  60. */