How can I specify upper/lower time bounds for responses of the SUT?

Sample model: Samples/CppSamples/TestConductor/TestingCookbook/SDTestCases

To specify the minimal or maximal time until the SUT should respond to an input, time intervals can be used. The sample shows how to realize this.

Screen capture

The scenario of test case SD_tc_2 shows how to specify time constraints. To specify a lower bound of the allowed response time, add a time interval between the sent message and the expected response of the SUT on the test component which sends the message to the SUT. Specify the time constraint using this syntax: A greater sign (>) followed by a number followed by the unit (msec for milli seconds, s for seconds or min for minutes). To specify an upper bound of the allowed response time, add a time interval after the sent message including the expected response of the SUT on the test component which sends the message to the SUT. Specify the time constraint using this syntax: A lesser sign (<) followed by a number followed by the unit (msec for milli seconds, s for seconds or min for minutes).