OpenXRVkTests.cpp 800 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. #include <AzTest/AzTest.h>
  9. #include "OpenXRVkTests.h"
  10. void OpenXRVkTest::SetUp()
  11. {
  12. SetupInternal();
  13. }
  14. void OpenXRVkTest::TearDown()
  15. {
  16. TearDownInternal();
  17. }
  18. #ifndef O3DE_TRAIT_DISABLE_ALL_OPENXRVK_TESTS
  19. TEST_F(OpenXRVkTest, PassThisTest)
  20. {
  21. EXPECT_TRUE(true);
  22. }
  23. #ifdef O3DE_TRAIT_DISABLE_FAILED_OPENXRVK_TESTS
  24. TEST_F(OpenXRVkTest, DISABLED_ExpectTrue)
  25. #else
  26. TEST_F(OpenXRVkTest, ExpectTrue)
  27. #endif // O3DE_TRAIT_DISABLE_FAILED_OPENXRVK_TESTS
  28. {
  29. EXPECT_TRUE(false);
  30. }
  31. #endif // !O3DE_TRAIT_DISABLE_ALL_OPENXRVK_TESTS
  32. AZ_UNIT_TEST_HOOK(DEFAULT_UNIT_TEST_ENV);