UtilTest_Managed_Files.py 512 B

123456789101112131415161718192021222324
  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. class Tests:
  7. passed = ("pass", "fail")
  8. def run():
  9. import os
  10. import sys
  11. from editor_python_test_tools.utils import Report
  12. from editor_python_test_tools.utils import TestHelper as helper
  13. helper.init_idle()
  14. Report.success(Tests.passed)
  15. if __name__ == "__main__":
  16. run()