Fixture.h 606 B

1234567891011121314151617181920212223
  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 <MotionMatchingSystemComponent.h>
  10. #include <Tests/SystemComponentFixture.h>
  11. namespace EMotionFX::MotionMatching
  12. {
  13. using Fixture = ComponentFixture<
  14. AZ::AssetManagerComponent,
  15. AZ::JobManagerComponent,
  16. AZ::StreamerComponent,
  17. EMotionFX::Integration::SystemComponent,
  18. MotionMatchingSystemComponent
  19. >;
  20. }