mirror of
https://github.com/parsecsv/parsecsv-for-php.git
synced 2026-02-19 00:36:38 +00:00
- https://svn.apache.org/repos/asf/shindig/attic/php/docs/style-guide.html: "Acryonyms are treated as normal words." - https://softwareengineering.stackexchange.com/a/149321/80632 Overview of class naming conventions of PHP frameworks - https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-4-autoloader.md No .lib allowed: "The class name corresponds to a file name ending in .php" See issue #50
14 lines
369 B
PHP
14 lines
369 B
PHP
<?php
|
|
|
|
$dir = realpath(__DIR__);
|
|
defined('BASE') OR define('BASE', dirname($dir) . '/');
|
|
|
|
require_once BASE . 'ParseCsvForPhp.php';
|
|
|
|
if (!class_exists('PHPUnit\Framework\TestCase')) {
|
|
// we run on an older PHPUnit version without namespaces.
|
|
require_once __DIR__ . '/PHPUnit_Framework_TestCase.inc.php';
|
|
}
|
|
|
|
require_once BASE . 'tests/properties/BaseClass.php';
|