├── .gitignore ├── .travis.yml ├── AUTHORS ├── LICENCE ├── composer.json ├── module ├── ImageDeviationException.php ├── VisualCeption.php ├── VisualCeptionReporter.php ├── jquery.js └── report │ └── template.php ├── readme.md └── test └── integration ├── codecept1.phar ├── codecept2.phar ├── codeception.yml └── tests ├── _bootstrap.php ├── _helpers ├── CodeHelper.php ├── TestHelper.php └── WebHelper.php ├── acceptance.suite.yml └── acceptance ├── NotSameSizeCest.php ├── SimpleCept.php ├── TimeComparisonCest.php ├── WriteCurrentImageCest.php └── _bootstrap.php /.gitignore: -------------------------------------------------------------------------------- 1 | .buildpath 2 | .project 3 | .settings/ 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalProducts/codeception-module-visualception/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalProducts/codeception-module-visualception/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalProducts/codeception-module-visualception/HEAD/LICENCE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalProducts/codeception-module-visualception/HEAD/composer.json -------------------------------------------------------------------------------- /module/ImageDeviationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalProducts/codeception-module-visualception/HEAD/module/ImageDeviationException.php -------------------------------------------------------------------------------- /module/VisualCeption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalProducts/codeception-module-visualception/HEAD/module/VisualCeption.php -------------------------------------------------------------------------------- /module/VisualCeptionReporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalProducts/codeception-module-visualception/HEAD/module/VisualCeptionReporter.php -------------------------------------------------------------------------------- /module/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalProducts/codeception-module-visualception/HEAD/module/jquery.js -------------------------------------------------------------------------------- /module/report/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalProducts/codeception-module-visualception/HEAD/module/report/template.php -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalProducts/codeception-module-visualception/HEAD/readme.md -------------------------------------------------------------------------------- /test/integration/codecept1.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalProducts/codeception-module-visualception/HEAD/test/integration/codecept1.phar -------------------------------------------------------------------------------- /test/integration/codecept2.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalProducts/codeception-module-visualception/HEAD/test/integration/codecept2.phar -------------------------------------------------------------------------------- /test/integration/codeception.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalProducts/codeception-module-visualception/HEAD/test/integration/codeception.yml -------------------------------------------------------------------------------- /test/integration/tests/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalProducts/codeception-module-visualception/HEAD/test/integration/tests/_bootstrap.php -------------------------------------------------------------------------------- /test/integration/tests/_helpers/CodeHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalProducts/codeception-module-visualception/HEAD/test/integration/tests/_helpers/CodeHelper.php -------------------------------------------------------------------------------- /test/integration/tests/_helpers/TestHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalProducts/codeception-module-visualception/HEAD/test/integration/tests/_helpers/TestHelper.php -------------------------------------------------------------------------------- /test/integration/tests/_helpers/WebHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalProducts/codeception-module-visualception/HEAD/test/integration/tests/_helpers/WebHelper.php -------------------------------------------------------------------------------- /test/integration/tests/acceptance.suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalProducts/codeception-module-visualception/HEAD/test/integration/tests/acceptance.suite.yml -------------------------------------------------------------------------------- /test/integration/tests/acceptance/NotSameSizeCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalProducts/codeception-module-visualception/HEAD/test/integration/tests/acceptance/NotSameSizeCest.php -------------------------------------------------------------------------------- /test/integration/tests/acceptance/SimpleCept.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalProducts/codeception-module-visualception/HEAD/test/integration/tests/acceptance/SimpleCept.php -------------------------------------------------------------------------------- /test/integration/tests/acceptance/TimeComparisonCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalProducts/codeception-module-visualception/HEAD/test/integration/tests/acceptance/TimeComparisonCest.php -------------------------------------------------------------------------------- /test/integration/tests/acceptance/WriteCurrentImageCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalProducts/codeception-module-visualception/HEAD/test/integration/tests/acceptance/WriteCurrentImageCest.php -------------------------------------------------------------------------------- /test/integration/tests/acceptance/_bootstrap.php: -------------------------------------------------------------------------------- 1 |