ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Test functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
TestWriteResult (Function)
In french: TestEcritRésultat
AjaxNot available
Writes information or an error into the status report of a unit test, in the test editor.
Remark: This function is available for the unit tests only. At run time, this information or these errors are ignored to avoid interfering with the operation of the application or site.
Example
WINDEVWEBDEV - Server code
// Add an information into the status report of a test
TestWriteResult(twrInfo, "Beginning of test")
WINDEVWEBDEV - Server code
// Check the file existence
IF fFileExist("C:\My Documents\MyFile.txt") = False THEN
// If the file does not exist, an error is triggered in the unit test
// and "The file does not exist" is displayed in the status report of the test
TestWriteResult(twrError, "The file does not exist.")
END
Syntax
TestWriteResult(<Type of information> , <Text to Write>)
<Type of information>: Integer constant
Type of information to write:
twrErrorUsed to write an error into the status report of the test. The test continues until it fails (WLanguage error for example).
If an error was written, the test is displayed as failed in the test manager.
twrInfoAn information is written into the status report of the test.

The type of information to write can be combined with the twrCallingProcess constant.
twrCallingProcessUsed to write a custom check procedure.
When TestWriteResult is called from the custom procedure, the results of TestWriteResult will be referenced in the call to the custom procedure (and not in the call to TestWriteResult).
Therefore, a double click performed in the results of the test will open the code editor on the call to the custom check procedure.
<Text to Write>: Character string
Information to write into the status report of the unit test.
Business / UI classification: Neutral code
Component: wd290testexe.dll
Minimum version required
  • Version 11
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help