mirror of
https://github.com/parsecsv/parsecsv-for-php.git
synced 2026-02-19 00:36:38 +00:00
11 lines
249 B
PHP
11 lines
249 B
PHP
<?php
|
|
|
|
$dir = realpath(__DIR__);
|
|
defined('BASE') OR define('BASE', dirname($dir) . '/');
|
|
|
|
require_once BASE . 'parsecsv.lib.php';
|
|
|
|
if (class_exists('PHPUnit_Framework_TestCase')) {
|
|
require_once __DIR__ . '/PHPUnit_Framework_TestCase.inc.php';
|
|
}
|