Skip to content

Instantly share code, notes, and snippets.

@EHER
Created February 5, 2012 05:53
Show Gist options
  • Save EHER/1743303 to your computer and use it in GitHub Desktop.
Save EHER/1743303 to your computer and use it in GitHub Desktop.
#!/usr/bin/env php
<?php
$dirPath = __DIR__;
$paths = array(
ini_get("include_path"),
$dirPath . '/vendor/symfony/finder',
$dirPath . '/dbunit',
$dirPath . '/php-file-iterator',
$dirPath . '/php-timer',
$dirPath . '/phpunit',
$dirPath . '/phpunit-selenium',
$dirPath . '/php-code-coverage',
$dirPath . '/php-text-template',
$dirPath . '/php-token-stream',
$dirPath . '/phpunit-mock-objects',
);
ini_set("include_path", implode(":", $paths));
require $dirPath . "/phpunit/phpunit.php";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment