diff options
Diffstat (limited to 'test/unit/configurationTest.php')
-rw-r--r-- | test/unit/configurationTest.php | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/test/unit/configurationTest.php b/test/unit/configurationTest.php index 034ce4c..52c60be 100644 --- a/test/unit/configurationTest.php +++ b/test/unit/configurationTest.php @@ -1,16 +1,15 @@ <?php -require_once 'vendor/autoload.php'; +namespace SparkPost\Test; use MessageSystems\Configuration; - -class ConfigurationTest extends PHPUnit_Framework_TestCase { +class ConfigurationTest extends \PHPUnit_Framework_TestCase { /** * @desc Ensures that the configuration class is not instantiable. */ public function testConstructorCannotBeCalled() { - $class = new ReflectionClass('\MessageSystems\Configuration'); + $class = new \ReflectionClass('\MessageSystems\Configuration'); $this->assertFalse($class->isInstantiable()); } |