TestSuite_Main.py 955 B

12345678910111213141516171819202122232425
  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. SPDX-License-Identifier: Apache-2.0 OR MIT
  5. """
  6. # This suite consists of all test cases that are passing and have been verified.
  7. import pytest
  8. from ly_test_tools.o3de.editor_test import EditorTestSuite, EditorSharedTest
  9. @pytest.mark.SUITE_main
  10. @pytest.mark.parametrize("launcher_platform", ['windows_editor'])
  11. @pytest.mark.parametrize("project", ["AutomatedTesting"])
  12. class TestAutomation(EditorTestSuite):
  13. class test_WhiteBox_AddComponentToEntity(EditorSharedTest):
  14. from .tests import WhiteBox_AddComponentToEntity as test_module
  15. class test_WhiteBox_SetDefaultShape(EditorSharedTest):
  16. from .tests import WhiteBox_SetDefaultShape as test_module
  17. class test_WhiteBox_SetInvisible(EditorSharedTest):
  18. from .tests import WhiteBox_SetInvisible as test_module