Skip to content

Tag Archives: PHP-PHPUnit

The assertDirectoryIsWritable() function is a builtin function in PHPUnit and is used to assert whether the directory specified is a directory or is writable. This… Read More
The assertFileIsWritable() function is a builtin function in PHPUnit and is used to assert whether the file specified is a file is writable or not.… Read More
The assertEqualsIgnoringCase() function is a builtin function in PHPUnit and is used to check whether the expected string is equal to actual string ignoring the… Read More
The assertFileEquals() function is a builtin function in PHPUnit and is used to assert whether the actual file content is exactly the same as the… Read More
The assertNotEqualsIgnoringCase() function is a builtin function in PHPUnit and is used to assert whether the expected string is not equal to actual string but… Read More
The assertFileNotExists() function is a builtin function in PHPUnit and is used to assert whether a file exists at a given path or not. This… Read More
The assertDirectoryIsNotWritable() function is a builtin function in PHPUnit and is used to assert whether the directory specified is a non-writable directory or not. This… Read More
The assertFileExists() function is a builtin function in PHPUnit and is used to check whether an file path exists or not. This assertion will return… Read More
The assertFileNotEquals() function is a builtin function in PHPUnit and is used to assert whether the actual file content is different from expected file content… Read More
The assertStringNotMatchesFormat() function is a builtin function in PHPUnit and is used to assert whether the difference between the given string and given format. This… Read More
The assertStringMatchesFormat() function is a builtin function in PHPUnit and is used to assert whether the given string is matched with the format  or not.… Read More
The assertXmlStringEqualsXmlFile() function is a builtin function in PHPUnit and is used to assert whether the actual XML file Content is equals to expected XML… Read More
The assertXmlStringEqualsXmlString() function is a builtin function in PHPUnit and is used to assert whether the actual XML string equals to expected XML string or… Read More
The assertXmlStringNotEqualsXmlFile() function is a builtin function in PHPUnit and is used to assert whether the actual XML file Content is not equals to expected… Read More
The assertXmlStringNotEqualsXmlString() function is a builtin function in PHPUnit and is used to assert whether the actual XML string is not equals to expected XML… Read More