Merge pull request #8329 from mlutfy/master-crm17997
[civicrm-core.git] / tools / scripts / phpunit-ls
CommitLineData
f03dc6b0
TO
1#!/usr/bin/env php
2<?php
fef71e55 3
f03dc6b0
TO
4require_once dirname(dirname(__DIR__)) . '/tests/phpunit/CiviTest/bootstrap.php';
5error_reporting(E_ALL);
fef71e55
TO
6
7if (!class_exists('PHPUnit_Framework_TestCase')) {
8 // Oooph. PHPUnit isn't available, and we don't really need its services,
9 // but the scanner will try to read metadata about our test-classes, and
10 // that requires having the parent-classes defined.
11
12 class PHPUnit_Framework_TestCase {}
13 class PHPUnit_Extensions_Database_TestCase {}
14 class PHPUnit_Extensions_SeleniumTestCase {}
15}
16
f03dc6b0 17\Civi\CiUtil\Command\LsCommand::main($argv);