SutLocale
Class that allows to get the current date time and culture of the system under test (SUT).
You can access the SutLocale through the generated App class from your test case:
DateTime now = App.SutLocale.SutDateTime;
Or from a screen through the IAppBasics Interface:
DateTime now = AppBasics.SutLocale.SutDateTime;
Namespace: Progile.TRIO.EnvironmentModel
Assembly: Progile.TRIO.EnvironmentModel.Windows (in Progile.TRIO.EnvironmentModel.Windows.dll)
Syntax:
public SutLocale(
ITester tester,
ISystemHelpers systemHelpers,
string cultureString
)
Parameter | Description |
t | The tester interface. |
systemHelper | An instance of the ISystemHelpers interface that allows interaction with the SUT operating system. |
cultureString | Type: String
The culture string (e.g en-US, de-CH etc) of the system under test. (for Windows: see Additional date, time, & regional settings in Region & language settings.) |
Name | Description |
Initializes the SutDateTime by determining the delta from the SUT to the host where the testcase is run. | |
Resets the SutDateTime using the current time of the host and considering the current time zone of the system under test. | |
Sets the SutDateTime to the provided. | |
Sets the time zone on the system under test to the provided time zone id. The 'tzutil' command is used to set the time zone. Consider to evaluate available time zone ids by running the command 'tzutil /l'. |
Name | Description |
The culture string (e.g en-US, de-CH etc) of the system under test. (for Windows: see Additional date, time, & regional settings in Region & language settings.) | |
Gets the current dateTime of the system under test (SUT). For an exact time you should call InitSutDateTime before using SutDateTime. |
Last modified 3mo ago