PrintWrite Method | |
Writes a text to Debug window (when call in Debug mode) and on test output section Debug
Namespace:
SIC.Test.Helper
Assembly:
SIC.Test.Helper (in SIC.Test.Helper.dll) Version: 19.1.23.1 (19.1.23.622)
Syntax public static void Write(
string pText
)
Public Shared Sub Write (
pText As String
)
Parameters
- pText
- Type: SystemString
Text to writing
Remarks
This method uses System.Diagnostics.Debug.WriteLine
Examples
This example write variable value lTest und his lResult in test output
SIC.Test.Helper.Print.Write(lTest);
SIC.Test.Helper.Print.Write("Method ButtonByAction result: " + lResult);
Example output
Test SOWI Web Helper HTML ButtonByAction on 25.04.2017 07:08:28
Method ButtonByAction result: ...
See Also