3
0

SystemComponentTests.cpp 684 B

123456789101112131415161718192021222324252627
  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 "SystemComponentFixture.h"
  9. namespace EMotionFX
  10. {
  11. TEST_F(SystemComponentFixture, SystemComponentLoads)
  12. {
  13. ASSERT_TRUE(true);
  14. }
  15. TEST_F(SystemComponentFixture, SystemComponentLoadsAgain)
  16. {
  17. // Having 2 tests that use the SystemComponentFixture ensures that a
  18. // subsequent call to SystemComponent::Activate() that comes after a
  19. // SystemComponent::Deactivate() functions as expected.
  20. ASSERT_TRUE(true);
  21. }
  22. } // end namespace EMotionFX