The assertIsNotArray() function is a builtin function in PHPUnit and is used to assert whether the given variable is not an array. This assertion will… Read More
Tag Archives: PHP-PHPUnit
The assertNotSame() function is a builtin function in PHPUnit and is used to assert the actually obtained value to be not-same to the expected value.… Read More
The assertSame() function is a builtin function in PHPUnit and is used to assert whether the actually obtained value is the same as the expected… Read More
The assertIsBool() function is a builtin function in PHPUnit and is used to assert whether the actually obtained value is Bool or not. This assertion… Read More
The assertStringEndsNotWith() function is a builtin function in PHPUnit and is used to assert whether the actual string doesn’t end with expected suffix string. This… Read More
The assertGreaterThanOrEqual() function is a builtin function in PHPUnit and is used to assert whether the actually obtained value is greater than or equal to… Read More
The assertStringNotEqualsFile() function is a builtin function in PHPUnit and is used to assert whether the actual string content Doesn’t equal to expected file. This… Read More
The assertNull() function is a builtin function in PHPUnit and is used to assert whether the variable is Null or not. This assertion will return… Read More
The assertFinite() function is a builtin function in PHPUnit and is used to assert whether the actually obtained value is not INF. This assertion will… Read More
The assertIsInt() function is a builtin function in PHPUnit and is used to assert whether the given actual variable is an integer or not. This… Read More
The assertStringEndsWith() function is a builtin function in PHPUnit and is used to assert whether the actual string ends with expected suffix string or not.… Read More
The assertIsNotObject() function is a builtin function in PHPUnit and is used to assert whether the actual given content does not object. This assertion will… Read More
The assertIsNotResource() function is a builtin function in PHPUnit and is used to assert whether the given variable is not Resource. This assertion will return… Read More
The assertStringStartsNotWith() function is a builtin function in PHPUnit and is used to assert whether the actual string doesn’t start with expected prefix string. This… Read More
The assertIsNotInt() function is a builtin function in PHPUnit and is used to assert whether the given actual variable is not an integer. This assertion… Read More