mirror of
https://github.com/parsecsv/parsecsv-for-php.git
synced 2026-02-19 08:36:39 +00:00
Added namespace support for further tests
This commit is contained in:
@@ -1,13 +1,18 @@
|
||||
<?php
|
||||
|
||||
class BaseClass extends PHPUnit\Framework\TestCase {
|
||||
namespace ParseCsv\tests\properties;
|
||||
|
||||
use ParseCsv\Csv;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class BaseClass extends TestCase {
|
||||
|
||||
/**
|
||||
* CSV
|
||||
* The parseCSV object
|
||||
*
|
||||
* @access protected
|
||||
* @var parseCSV
|
||||
* @var Csv
|
||||
*/
|
||||
protected $csv;
|
||||
|
||||
@@ -18,7 +23,7 @@ class BaseClass extends PHPUnit\Framework\TestCase {
|
||||
* @access public
|
||||
*/
|
||||
public function setUp() {
|
||||
$this->csv = new parseCSV();
|
||||
$this->csv = new Csv();
|
||||
}
|
||||
|
||||
protected function _compareWithExpected($expected) {
|
||||
|
||||
Reference in New Issue
Block a user