Index: shared/scripts/names.py =================================================================== diff -u -r48849c79a27af51cb7c8c580b26694b3a880c603 -r8df6f936193bbd9127d3ec940562e62db0060bcb --- shared/scripts/names.py (.../names.py) (revision 48849c79a27af51cb7c8c580b26694b3a880c603) +++ shared/scripts/names.py (.../names.py) (revision 8df6f936193bbd9127d3ec940562e62db0060bcb) @@ -1,5 +1,7 @@ # encoding: UTF-8 +AUT_NAME = "denaliSquish" + from objectmaphelper import * Index: suite.conf =================================================================== diff -u -rc178841263d7366f577776e63b59bd562e5d4d72 -r8df6f936193bbd9127d3ec940562e62db0060bcb --- suite.conf (.../suite.conf) (revision c178841263d7366f577776e63b59bd562e5d4d72) +++ suite.conf (.../suite.conf) (revision 8df6f936193bbd9127d3ec940562e62db0060bcb) @@ -1,6 +1,6 @@ AUT=denaliSquish LANGUAGE=Python OBJECTMAPSTYLE=script -TEST_CASES=tst_post tst_patientID_UI tst_standbymode tst_pre_treatment tst_case2 tst_case1 +TEST_CASES=tst_environment tst_post tst_standbymode tst_In_treatment VERSION=3 WRAPPERS=Qt Fisheye: Tag 8df6f936193bbd9127d3ec940562e62db0060bcb refers to a dead (removed) revision in file `tst_case_environment/test.py'. Fisheye: No comparison available. Pass `N' to diff? Index: tst_environment/test.py =================================================================== diff -u --- tst_environment/test.py (revision 0) +++ tst_environment/test.py (revision 8df6f936193bbd9127d3ec940562e62db0060bcb) @@ -0,0 +1,34 @@ +# -*- coding: utf-8 -*- + +## +# Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. +# copyright +# THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, +# IN PART OR IN WHOLE, +# WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. +# +# file tst_case_environment +# date 2022/01/24 +# author1 Akshay Rajaram Dhawan + + +import names + +from dialin.ui import utils +from dialin.ui import unittests + +def main(): + utils.tstStart(__file__) + + try: + startApplication(names.AUT_NAME) + test.passes("start application") + except RuntimeError as err: + test.fail(str(err)) + + unittests.test_python_version() + unittests.test_crc8() + unittests.test_can0() + + utils.tstDone() +