EditorLevelLoading_10KEntityCpuPerfTest.py 538 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. from Performance.utils.perf_timer import time_editor_level_loading
  7. def EditorLevelLoading_10KEntityCpuPerfTest():
  8. time_editor_level_loading('Performance', '10KEntityCpuPerfTest')
  9. if __name__ == "__main__":
  10. from editor_python_test_tools.utils import Report
  11. Report.start_test(EditorLevelLoading_10KEntityCpuPerfTest)