PHP code example of in4s / utest
1. Go to this page and download the library: Download in4s/utest library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
in4s / utest example snippets
$UTest = new \in4s\UTest();
// You can
$UTest->renderStylesAndScripts();
// or use yours styles and scripts, just grab originals from src/styles.php and src/scripts.php
// Render test results of a particular class, just replace in4s\UTestTest to your test class name
in4s\UTestTest::run();