diff --git a/tests/methods/ConstructTest.php b/tests/methods/ConstructTest.php index 3da03a4..8659c72 100644 --- a/tests/methods/ConstructTest.php +++ b/tests/methods/ConstructTest.php @@ -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); diff --git a/tests/methods/ParseTest.php b/tests/methods/ParseTest.php index 5f26a21..ae4d667 100644 --- a/tests/methods/ParseTest.php +++ b/tests/methods/ParseTest.php @@ -8,11 +8,7 @@ class ParseTest extends TestCase { /** - * CSV - * The CSV object - * - * @access protected - * @var Csv + * @var Csv object */ protected $csv;