ScriptCanvas_Math.cpp 755 B

1234567891011121314151617181920212223242526272829
  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 <Source/Framework/ScriptCanvasTestFixture.h>
  9. #include <Source/Framework/ScriptCanvasTestUtilities.h>
  10. #include <AzCore/Math/Vector3.h>
  11. #include <ScriptCanvas/Data/Data.h>
  12. using namespace ScriptCanvasTests;
  13. using namespace ScriptCanvas;
  14. TEST_F(ScriptCanvasTestFixture, MathOperations_Graph)
  15. {
  16. RunUnitTestGraph("LY_SC_UnitTest_MathOperations", ExecutionMode::Interpreted);
  17. }
  18. TEST_F(ScriptCanvasTestFixture, MathCustom_Graph)
  19. {
  20. RunUnitTestGraph("LY_SC_UnitTest_UnitTest_MathCustom", ExecutionMode::Interpreted);
  21. }