Verify Class
Class for verifying expected values in your application.
Remarks
When a Verify method returns a false value, the step fails, but the failure does not throw an exception or cause the test to stop running.

C# Syntax

public static class Verify 
Inheritance Hierarchy

System.Object
   HP.LFT.Verifications.Verify

Public Methods
 NameDescription
Public Methodstatic (Shared in Visual Basic)AreEqualOverloaded. Checks whether two IEnumerable values are equal.  
Public Methodstatic (Shared in Visual Basic)AreEqualIgnoringCaseChecks whether two string values are equal, ignoring case.  
Public Methodstatic (Shared in Visual Basic)AreNotEqualOverloaded. Checks whether two integer values are different.  
Public Methodstatic (Shared in Visual Basic)AreNotEqualIgnoringCaseChecks whether two string values are different, ignoring case.  
Public Methodstatic (Shared in Visual Basic)ContainsOverloaded. Checks whether the provided collection contains the object provided in the second argument.  
Public Methodstatic (Shared in Visual Basic)EndsWithChecks whether the 'expected' string is the last part of the 'actual' string.  
Public Methodstatic (Shared in Visual Basic)GreaterOverloaded. Checks whether the first number specified is greater than the second for integer values.  
Public Methodstatic (Shared in Visual Basic)GreaterOrEqualOverloaded. Checks whether the first number specified is greater than or equal to the second for integer values.  
Public Methodstatic (Shared in Visual Basic)IsFalseChecks whether the specified condition is false.  
Public Methodstatic (Shared in Visual Basic)IsMatchChecks whether the specified regular expression matches the specified string value.  
Public Methodstatic (Shared in Visual Basic)IsNotNullOrEmptyOverloaded. Checks whether the provided collection is not null or empty.  
Public Methodstatic (Shared in Visual Basic)IsNullOrEmptyOverloaded. Checks whether the provided collection is null or empty.  
Public Methodstatic (Shared in Visual Basic)IsTrueChecks whether the specified condition is true.  
Public Methodstatic (Shared in Visual Basic)LessOverloaded. Checks whether the first number specified is less than the second for integer values.  
Public Methodstatic (Shared in Visual Basic)LessOrEqualOverloaded. Checks whether the first number specified is less than or equal to the second for integer values.  
Public Methodstatic (Shared in Visual Basic)StartsWithChecks whether the 'expected' string is the first part of the 'actual' string.  
Top