Skip to content

Tag Archives: PHP-PHPUnit

The assertIsIterable() function is a builtin function in PHPUnit and is used to assert whether the given variable is Iterable or not. This assertion will… Read More
The assertIsFloat() function is a builtin function in PHPUnit and is used to assert whether the actually obtained value is float or not. This assertion… Read More
The assertIsObject() function is a builtin function in PHPUnit and is used to assert whether the actual given content is an object or not. This… Read More
The assertEqualsCanonicalizing() function is a builtin function in PHPUnit and is used to assert whether expected and actual variables are canonically equals. Canonical equals mean… Read More
The assertNotEquals() function is a builtin function in PHPUnit and is used to assert the actual obtained value to be not-equals to expected value. This… Read More
The assertEquals() function is a builtin function in PHPUnit and is used to assert whether the actual obtained value is equals to expected value or… Read More
The assertEmpty() function is a builtin function in PHPUnit and is used to assert whether the data holder specified is empty or not. This assertion… Read More
The assertNotEmpty() function is a builtin function in PHPUnit and is used to assert whether the data holder specified is non-empty or not. This assertion… Read More
The assertDirectoryIsReadable() function is a builtin function in PHPUnit and is used to assert whether the directory specified is a directory or is readable. This… Read More
The assertCount() function is a builtin function in PHPUnit and is used to assert an array to contain same number of elements as the given… Read More
The assertNotContainsOnly() function is a builtin function in PHPUnit and is used to assert an array not to contain all its values as the given… Read More
The assertContainsOnlyInstancesOf() function is a builtin function in PHPUnit and is used to assert an array to contain all its values as instance of the… Read More
The aassertNotCount() function is a builtin function in PHPUnit and is used to assert an array not to contain same number of elements as the… Read More
The assertDirectoryExists() function is a builtin function in PHPUnit and is used to assert whether an directory path exists or not. This assertion will return… Read More
The assertDirectoryNotIsWritable() function is a builtin function in PHPUnit and is used to assert whether the directory specified is not a directory or is not… Read More