renamed namespace

This commit is contained in:
Susann Sgorzaly
2018-02-18 12:42:53 +01:00
parent a7a0bc34a4
commit 17ac1dee1a
8 changed files with 23 additions and 15 deletions

View File

@@ -1,6 +1,10 @@
<?php
namespace ParseCsv\tests\properties;
class default_values_properties_Test extends PHPUnit\Framework\TestCase {
use ParseCsv\Csv;
use PHPUnit_Framework_TestCase as TestCase;
class default_values_properties_Test extends TestCase {
/**
* CSV

View File

@@ -1,6 +1,10 @@
<?php
namespace ParseCsv\tests\properties;
class worthless_properties_Test extends PHPUnit\Framework\TestCase {
use ParseCsv\Csv;
use PHPUnit_Framework_TestCase as TestCase;
class DefaultValuesTest extends TestCase {
/**
* CSV
@@ -36,7 +40,7 @@ class worthless_properties_Test extends PHPUnit\Framework\TestCase {
*/
public function setUp() {
//setup parse CSV
$this->csv = new parseCSV();
$this->csv = new Csv();
//setup the reflection class
$this->reflection = new ReflectionClass($this->csv);