mirror of
https://github.com/parsecsv/parsecsv-for-php.git
synced 2026-02-19 08:36:39 +00:00
No code changes, just cleaned up comments a bit
This commit is contained in:
@@ -8,35 +8,10 @@ use PHPUnit\Framework\TestCase;
|
|||||||
class ConstructTest extends TestCase {
|
class ConstructTest extends TestCase {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CSV
|
* @var Csv object
|
||||||
* The Csv object
|
|
||||||
*
|
|
||||||
* @access protected
|
|
||||||
* @var Csv
|
|
||||||
*/
|
*/
|
||||||
protected $csv = null;
|
protected $csv = null;
|
||||||
|
|
||||||
/**
|
|
||||||
* Setup
|
|
||||||
* Setup our test environment objects
|
|
||||||
*
|
|
||||||
* @access public
|
|
||||||
*/
|
|
||||||
public function setUp() {
|
|
||||||
//setup parse CSV
|
|
||||||
#$this->csv = new Csv();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Tear down
|
|
||||||
* Tear down our test environment objects
|
|
||||||
*
|
|
||||||
* @access public
|
|
||||||
*/
|
|
||||||
public function tearDown() {
|
|
||||||
$this->csv = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function test_offset_param() {
|
public function test_offset_param() {
|
||||||
$offset = 10;
|
$offset = 10;
|
||||||
$this->csv = new Csv(null, $offset);
|
$this->csv = new Csv(null, $offset);
|
||||||
|
|||||||
@@ -8,11 +8,7 @@ class ParseTest extends TestCase
|
|||||||
{
|
{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CSV
|
* @var Csv object
|
||||||
* The CSV object
|
|
||||||
*
|
|
||||||
* @access protected
|
|
||||||
* @var Csv
|
|
||||||
*/
|
*/
|
||||||
protected $csv;
|
protected $csv;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user