3
0

MaterialEditor_Atom_ExpectsTestFailure.py 452 B

123456789101112131415
  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. def MaterialEditorTest_That_Fails():
  7. assert False, "This test fails on purpose to test functionality"
  8. if __name__ == "__main__":
  9. from editor_python_test_tools.utils import Report
  10. Report.start_test(MaterialEditorTest_That_Fails)