ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Standard functions / Test functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
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.
Note: This function is only taken into account during a unit test.. At runtime, this information or these errors are ignored to avoid interfering with the operation of the application or site.
Example
WINDEVWEBDEV - Server code
// Ajout d'une information dans le compte-rendu d'un test
TestWriteResult(twrInfo, "Début du test")
WINDEVWEBDEV - Server code
// Test de l'existence du fichier
IF fFileExist("C:\Mes Documents\MonFichier.txt") = False THEN
	// Si le fichier n'existe pas, une erreur est provoquée dans le test unitaire
	// et l'information "Le fichier n'existe pas" apparaît dans le compte-rendu du test
	TestWriteResult(twrError, "Le fichier n'existe pas.")
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 the TestWriteResult function is called from the custom procedure, the results of the TestWriteResult function will be referenced at the level of the call to the custom procedure and not at the level of the call to the TestWriteResultfunction. .
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: wd300testexe.dll
Minimum version required
  • Version 11
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/21/2024

Send a report | Local help