* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along with this program; * if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA * */ if (!defined('PHPUnit_MAIN_METHOD')) { define('PHPUnit_MAIN_METHOD', 'extractor_eimadmin_AllTests::main'); } set_include_path(get_include_path() . PATH_SEPARATOR . "../../../build"); require_once 'PHPUnit/Framework.php'; require_once 'PHPUnit/TextUI/TestRunner.php'; require_once 'ExtractorJobTitleTest.php'; class extractor_eimadmin_AllTests { public static function main() { PHPUnit_TextUI_TestRunner::run(self::suite()); } public static function suite() { $suite = new PHPUnit_Framework_TestSuite('OrangeHRM extractor_eimadmin'); $suite->addTestSuite('ExtractorJobTitleTest'); return $suite; } } if (PHPUnit_MAIN_METHOD == 'extractor_eimadmin_AllTests::main') { extractor_eimadmin_AllTests::main(); }