aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/ActionImplementationTest.php1
-rw-r--r--tests/BridgeImplementationTest.php1
-rw-r--r--tests/CacheImplementationTest.php1
-rw-r--r--tests/FormatImplementationTest.php1
4 files changed, 0 insertions, 4 deletions
diff --git a/tests/ActionImplementationTest.php b/tests/ActionImplementationTest.php
index 6a36c2f1..7a3c33f5 100644
--- a/tests/ActionImplementationTest.php
+++ b/tests/ActionImplementationTest.php
@@ -48,7 +48,6 @@ class ActionImplementationTest extends TestCase {
}
private function setAction($path) {
- require_once $path;
$this->class = basename($path, '.php');
$this->assertTrue(class_exists($this->class), 'class ' . $this->class . ' doesn\'t exist');
$this->obj = new $this->class();
diff --git a/tests/BridgeImplementationTest.php b/tests/BridgeImplementationTest.php
index 28d8ec1e..e45de77f 100644
--- a/tests/BridgeImplementationTest.php
+++ b/tests/BridgeImplementationTest.php
@@ -212,7 +212,6 @@ class BridgeImplementationTest extends TestCase {
}
private function setBridge($path) {
- require_once $path;
$this->class = basename($path, '.php');
$this->assertTrue(class_exists($this->class), 'class ' . $this->class . ' doesn\'t exist');
$this->obj = new $this->class();
diff --git a/tests/CacheImplementationTest.php b/tests/CacheImplementationTest.php
index 68741d8b..1e430998 100644
--- a/tests/CacheImplementationTest.php
+++ b/tests/CacheImplementationTest.php
@@ -34,7 +34,6 @@ class CacheImplementationTest extends TestCase {
}
private function setCache($path) {
- require_once $path;
$this->class = basename($path, '.php');
$this->assertTrue(class_exists($this->class), 'class ' . $this->class . ' doesn\'t exist');
}
diff --git a/tests/FormatImplementationTest.php b/tests/FormatImplementationTest.php
index d4d7249f..e4501d68 100644
--- a/tests/FormatImplementationTest.php
+++ b/tests/FormatImplementationTest.php
@@ -33,7 +33,6 @@ class FormatImplementationTest extends TestCase {
}
private function setFormat($path) {
- require_once $path;
$this->class = basename($path, '.php');
$this->assertTrue(class_exists($this->class), 'class ' . $this->class . ' doesn\'t exist');
$this->obj = new $this->class();