diff options
author | Ignace Nyamagana Butera <nyamsprod@gmail.com> | 2015-02-19 08:49:17 +0100 |
---|---|---|
committer | Ignace Nyamagana Butera <nyamsprod@gmail.com> | 2015-02-19 08:52:39 +0100 |
commit | 0a493cecf0216f4c797671601251e3c1a6452ffa (patch) | |
tree | a23aeb9c31d7e05ccffa30bd4e5dc46cd27a5139 /test | |
parent | 959ede56075fec54891fad13744aeed6d42ad345 (diff) | |
download | csv-0a493cecf0216f4c797671601251e3c1a6452ffa.zip csv-0a493cecf0216f4c797671601251e3c1a6452ffa.tar.gz csv-0a493cecf0216f4c797671601251e3c1a6452ffa.tar.bz2 |
final package structure
Diffstat (limited to 'test')
-rw-r--r-- | test/Plugin/ColumnConsistencyValidatorTest.php (renamed from test/Exporter/ColumnConsistencyValidatorTest.php) | 4 | ||||
-rw-r--r-- | test/Plugin/NullFormatterTest.php (renamed from test/Exporter/NullFormatterTest.php) | 4 | ||||
-rw-r--r-- | test/Plugin/NullValidatorTest.php (renamed from test/Exporter/NullValidatorTest.php) | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/test/Exporter/ColumnConsistencyValidatorTest.php b/test/Plugin/ColumnConsistencyValidatorTest.php index 8900227..487f53d 100644 --- a/test/Exporter/ColumnConsistencyValidatorTest.php +++ b/test/Plugin/ColumnConsistencyValidatorTest.php @@ -1,9 +1,9 @@ <?php -namespace League\Csv\Test\Exporter; +namespace League\Csv\Test\Plugin; use League\Csv\Writer; -use League\Csv\Exporter\ColumnConsistencyValidator; +use League\Csv\Plugin\ColumnConsistencyValidator; use PHPUnit_Framework_TestCase; use SplFileObject; use SplTempFileObject; diff --git a/test/Exporter/NullFormatterTest.php b/test/Plugin/NullFormatterTest.php index cc8a8ea..97ac3be 100644 --- a/test/Exporter/NullFormatterTest.php +++ b/test/Plugin/NullFormatterTest.php @@ -1,9 +1,9 @@ <?php -namespace League\Csv\Test\Exporter; +namespace League\Csv\Test\Plugin; use League\Csv\Writer; -use League\Csv\Exporter\SkipNullValuesFormatter; +use League\Csv\Plugin\SkipNullValuesFormatter; use LimitIterator; use PHPUnit_Framework_TestCase; use SplFileObject; diff --git a/test/Exporter/NullValidatorTest.php b/test/Plugin/NullValidatorTest.php index 5589b92..fd0336c 100644 --- a/test/Exporter/NullValidatorTest.php +++ b/test/Plugin/NullValidatorTest.php @@ -1,9 +1,9 @@ <?php -namespace League\Csv\Test\Exporter; +namespace League\Csv\Test\Plugin; use League\Csv\Exception\InvalidRowException; -use League\Csv\Exporter\ForbiddenNullValuesValidator; +use League\Csv\Plugin\ForbiddenNullValuesValidator; use League\Csv\Writer; use PHPUnit_Framework_TestCase; use SplFileObject; |