Skip to content

Commit

Permalink
Tests: Handle more control types explicitly
Browse files Browse the repository at this point in the history
The tests CheckIfAllControlsReferStateWv and CheckStartupSettings needed
to learn that there is nothing to do for the group and the title box.
  • Loading branch information
t-b committed Feb 13, 2025
1 parent 72e1a1a commit d9733d4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Packages/tests/HardwareBasic/UTF_DAEphys.ipf
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ Function CheckIfAllControlsReferStateWv([string str])
case CONTROL_TYPE_LISTBOX:
case CONTROL_TYPE_TAB:
case CONTROL_TYPE_VALDISPLAY:
case CONTROL_TYPE_GROUPBOX:
case CONTROL_TYPE_TITLEBOX:
// nothing to do
break
case CONTROL_TYPE_CHECKBOX:
Expand Down Expand Up @@ -199,6 +201,8 @@ Function CheckStartupSettings([string str])
case CONTROL_TYPE_LISTBOX:
case CONTROL_TYPE_TAB:
case CONTROL_TYPE_VALDISPLAY:
case CONTROL_TYPE_GROUPBOX:
case CONTROL_TYPE_TITLEBOX:
// nothing to do
break
case CONTROL_TYPE_CHECKBOX:
Expand Down

0 comments on commit d9733d4

Please sign in to comment.