No code changes, just cleaned up comments a bit

This commit is contained in:
Christian Bläul
2018-02-21 19:36:06 +01:00
committed by Fonata
parent d05577d303
commit 68239d6859
2 changed files with 2 additions and 31 deletions

View File

@@ -8,35 +8,10 @@ use PHPUnit\Framework\TestCase;
class ConstructTest extends TestCase {
/**
* CSV
* The Csv object
*
* @access protected
* @var Csv
* @var Csv object
*/
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() {
$offset = 10;
$this->csv = new Csv(null, $offset);