# -*- coding: utf-8 -*- ########################################################################### # # Copyright (c) 2020-2022 Diality Inc. - All Rights Reserved. # # 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 test.py # # @author (last) Peter Lucia # @date (last) 22-Feb-2021 # @author (original) Behrouz NematiPour # @date (original) 03-Aug-2020 # ############################################################################ import names from dialin.ui import utils from dialin import HDSimulator hd_sim = HDSimulator() def main(): utils.tstStart(__file__) startApplication(names.AUT_NAME) utils.waitForGUI(1) # these tests are used for debugging and are placeholder for later use cases. hd_sim.cmd_send_checkin_dg() hd_sim.cmd_set_dg_debug_text("01234567890123456789012345678901234567820123456789") hd_sim.cmd_set_hd_debug_text("01234567890123456789012345678901234567810123456789") utils.tstDone()