dev-master
9999999-dev https://github.com/mamchenkov/Web-TesterA collection of PHPUnit tests for public website sanity check
GPL-2.0
The Requires
phpunit testing
Wallogit.com
2017 © Pedro Peláez
A collection of PHPUnit tests for public website sanity check
Web-Tester is a collection of the PHPUnit tests which can be executed against any publicly available website. These are thrown together to make sure the most common things aren't missed out when deploying web projects:, (*1)
Install with Composer:, (*2)
{
require: {
"mamchenkov/web-tester": "dev-master"
}
}
Run all tests with default options for a given domain:, (*3)
$ vendor/bin/web_tester.sh http://www.domain.com
More control is available via web_tester.json file. Here is an example:, (*4)
{
"site": "http://www.google.com",
"timeout": "2",
"skip": [
"WebTester\\BasicTest",
"WebTester\\FaviconTest",
"WebTester\\RobotsTest"
]
}
The URL of the site can be ommitted when it is present in the configuration file:, (*5)
$ vendor/bin/web_tester.sh
A collection of PHPUnit tests for public website sanity check
GPL-2.0
phpunit testing