summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorIgnace Nyamagana Butera <nyamsprod@gmail.com>2015-02-19 08:49:17 +0100
committerIgnace Nyamagana Butera <nyamsprod@gmail.com>2015-02-19 08:52:39 +0100
commit0a493cecf0216f4c797671601251e3c1a6452ffa (patch)
treea23aeb9c31d7e05ccffa30bd4e5dc46cd27a5139 /test
parent959ede56075fec54891fad13744aeed6d42ad345 (diff)
downloadcsv-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;