test_example_pytest.py 866 B

1234567891011121314151617181920212223
  1. # {BEGIN_LICENSE}
  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. # {END_LICENSE}
  8. import unittest.mock as mock
  9. import pytest
  10. # This line is here to prove that you can import things from ly_test_tools or other parts
  11. # of the o3de toolkit to help you make tests. See the documentation as well as existing tests
  12. # in the gems and in the o3de repository (especially AutomatedTesting project) for examples on how
  13. # to run things inside the editor, etc.
  14. import ly_remote_console.remote_console_commands as remote_console
  15. # The rest is standard pytest functionality, you can write tests here as you would in pytest.
  16. @pytest.mark.unit
  17. class TestExample():
  18. def test_ExampleTest(self):
  19. assert True