2
0

TestSuite_Main_Null_Render_Level_Loads.py 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. import pytest
  7. from ly_test_tools.o3de.editor_test import EditorBatchedTest, EditorTestSuite
  8. @pytest.mark.parametrize("project", ["AutomatedTesting"])
  9. @pytest.mark.parametrize("launcher_platform", ['windows_editor'])
  10. class TestAutomation(EditorTestSuite):
  11. @pytest.mark.test_case_id("C36530722")
  12. class Editor_levelLoad_Atom_hermanubis(EditorBatchedTest):
  13. from Atom.tests import levelLoad_Atom_hermanubis as test_module
  14. @pytest.mark.test_case_id("C36530724")
  15. class Editor_levelLoad_Atom_hermanubis_high(EditorBatchedTest):
  16. from Atom.tests import levelLoad_Atom_hermanubis_high as test_module
  17. @pytest.mark.test_case_id("C36530725")
  18. class Editor_levelLoad_Atom_macbeth_shaderballs(EditorBatchedTest):
  19. from Atom.tests import levelLoad_Atom_macbeth_shaderballs as test_module
  20. @pytest.mark.test_case_id("C36530726")
  21. class Editor_levelLoad_Atom_PbrMaterialChart(EditorBatchedTest):
  22. from Atom.tests import levelLoad_Atom_PbrMaterialChart as test_module
  23. @pytest.mark.test_case_id("C36530727")
  24. class Editor_levelLoad_Atom_ShadowTest(EditorBatchedTest):
  25. from Atom.tests import levelLoad_Atom_ShadowTest as test_module
  26. @pytest.mark.test_case_id("C36530728")
  27. class Editor_levelLoad_Atom_Sponza(EditorBatchedTest):
  28. from Atom.tests import levelLoad_Atom_Sponza as test_module