├── .gitignore ├── README.md ├── composer.json ├── examples ├── example1.php ├── example2.php └── subtest.php ├── lib └── Testify │ ├── Testify.php │ ├── helpers.php │ ├── testify.report.cli.php │ └── testify.report.html.php ├── test.php └── test └── TestifyTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcofiset/Testify.php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcofiset/Testify.php/HEAD/composer.json -------------------------------------------------------------------------------- /examples/example1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcofiset/Testify.php/HEAD/examples/example1.php -------------------------------------------------------------------------------- /examples/example2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcofiset/Testify.php/HEAD/examples/example2.php -------------------------------------------------------------------------------- /examples/subtest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcofiset/Testify.php/HEAD/examples/subtest.php -------------------------------------------------------------------------------- /lib/Testify/Testify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcofiset/Testify.php/HEAD/lib/Testify/Testify.php -------------------------------------------------------------------------------- /lib/Testify/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcofiset/Testify.php/HEAD/lib/Testify/helpers.php -------------------------------------------------------------------------------- /lib/Testify/testify.report.cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcofiset/Testify.php/HEAD/lib/Testify/testify.report.cli.php -------------------------------------------------------------------------------- /lib/Testify/testify.report.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcofiset/Testify.php/HEAD/lib/Testify/testify.report.html.php -------------------------------------------------------------------------------- /test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcofiset/Testify.php/HEAD/test.php -------------------------------------------------------------------------------- /test/TestifyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcofiset/Testify.php/HEAD/test/TestifyTest.php --------------------------------------------------------------------------------