9e7d5fe52b
* Test the Terrain World configuration changes when parameters are changed in the component Signed-off-by: John Jones-Steele <82226755+jjjoness@users.noreply.github.com> * Changes from PR Signed-off-by: John Jones-Steele <82226755+jjjoness@users.noreply.github.com> * Before merge Signed-off-by: John Jones-Steele <82226755+jjjoness@users.noreply.github.com> * Before merge 2 Signed-off-by: John Jones-Steele <82226755+jjjoness@users.noreply.github.com> * Changes from PR Signed-off-by: John Jones-Steele <82226755+jjjoness@users.noreply.github.com> * Change from PR Signed-off-by: John Jones-Steele <82226755+jjjoness@users.noreply.github.com> * Change before merge Signed-off-by: John Jones-Steele <82226755+jjjoness@users.noreply.github.com> * Change before merge 2 Signed-off-by: John Jones-Steele <82226755+jjjoness@users.noreply.github.com> * Change before merge 3 Signed-off-by: John Jones-Steele <82226755+jjjoness@users.noreply.github.com> * Change after merge to fix conflicts Signed-off-by: John Jones-Steele <82226755+jjjoness@users.noreply.github.com> * Fix merge conflict Signed-off-by: John Jones-Steele <82226755+jjjoness@users.noreply.github.com> * Fix merge conflict Signed-off-by: John Jones-Steele <82226755+jjjoness@users.noreply.github.com> * CHanges from PR Signed-off-by: John Jones-Steele <82226755+jjjoness@users.noreply.github.com>
42 lines
1.7 KiB
Python
42 lines
1.7 KiB
Python
"""
|
|
Copyright (c) Contributors to the Open 3D Engine Project.
|
|
For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
|
|
|
SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
|
|
"""
|
|
|
|
# This suite consists of all test cases that are passing and have been verified.
|
|
|
|
import pytest
|
|
import os
|
|
import sys
|
|
|
|
from ly_test_tools import LAUNCHERS
|
|
from ly_test_tools.o3de.editor_test import EditorTestSuite, EditorSharedTest
|
|
|
|
@pytest.mark.SUITE_main
|
|
@pytest.mark.parametrize("launcher_platform", ['windows_editor'])
|
|
@pytest.mark.parametrize("project", ["AutomatedTesting"])
|
|
class TestAutomation(EditorTestSuite):
|
|
|
|
enable_prefab_system = False
|
|
|
|
class test_AxisAlignedBoxShape_ConfigurationWorks(EditorSharedTest):
|
|
from .EditorScripts import TerrainPhysicsCollider_ChangesSizeWithAxisAlignedBoxShapeChanges as test_module
|
|
|
|
class test_Terrain_SupportsPhysics(EditorSharedTest):
|
|
from .EditorScripts import Terrain_SupportsPhysics as test_module
|
|
|
|
class test_TerrainHeightGradientList_AddRemoveGradientWorks(EditorSharedTest):
|
|
from .EditorScripts import TerrainHeightGradientList_AddRemoveGradientWorks as test_module
|
|
|
|
class test_TerrainSystem_VegetationSpawnsOnTerrainSurfaces(EditorSharedTest):
|
|
from .EditorScripts import TerrainSystem_VegetationSpawnsOnTerrainSurfaces as test_module
|
|
|
|
class test_TerrainMacroMaterialComponent_MacroMaterialActivates(EditorSharedTest):
|
|
from .EditorScripts import TerrainMacroMaterialComponent_MacroMaterialActivates as test_module
|
|
|
|
class test_TerrainWorld_ConfigurationWorks(EditorSharedTest):
|
|
from .EditorScripts import Terrain_World_ConfigurationWorks as test_module
|