PHP Classes

File: bin/autotest.php

Recommend this page to a friend!
  Classes of Dmitry M. Merkushin   PHP Autotest   bin/autotest.php   Download  
File: bin/autotest.php
Role: Application script
Content type: text/plain
Description: Application script
Class: PHP Autotest
Run automated test again when project files change
Author: By
Last change: Update of bin/autotest.php
Date: 2 months ago
Size: 239 bytes
 

Contents

Class file image Download
#!/usr/bin/env php
<?php
require_once __DIR__ . '/../vendor/autoload.php';

try {
   
$application = new \Autotest\Console\Application();
   
$application->run();
} catch (\
Exception $e) {
    echo
'Error: ' . $e->getMessage() . PHP_EOL;
}