summaryrefslogtreecommitdiffstats
path: root/test/unit/TransmissionTest.php
diff options
context:
space:
mode:
authorTobias Nyholm <tobias.nyholm@gmail.com>2016-08-26 17:46:14 +0200
committerCole Furfaro-Strode <colestrode@users.noreply.github.com>2016-08-26 11:46:14 -0400
commit8c75ab08e18bc349e39582c6f8d17a9970c4a3c0 (patch)
tree7a5d40e98ea87c59a363b81fca2170835f1bab35 /test/unit/TransmissionTest.php
parent1bbefef4df13778b5924e959047124f075ac38e6 (diff)
downloadphp-sparkpost-8c75ab08e18bc349e39582c6f8d17a9970c4a3c0.zip
php-sparkpost-8c75ab08e18bc349e39582c6f8d17a9970c4a3c0.tar.gz
php-sparkpost-8c75ab08e18bc349e39582c6f8d17a9970c4a3c0.tar.bz2
Test cleanup (#137)
* Test cleanup * Make travis run again * Composer update * Install PHPunit * Removed composer.lock * Added composer.lock and drop support for php 5.5 * Update .travis.yml
Diffstat (limited to 'test/unit/TransmissionTest.php')
-rw-r--r--test/unit/TransmissionTest.php3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/unit/TransmissionTest.php b/test/unit/TransmissionTest.php
index c956c12..89cf943 100644
--- a/test/unit/TransmissionTest.php
+++ b/test/unit/TransmissionTest.php
@@ -4,11 +4,9 @@ namespace SparkPost\Test;
use SparkPost\SparkPost;
use Mockery;
-use SparkPost\Test\TestUtils\ClassUtils;
class TransmissionTest extends \PHPUnit_Framework_TestCase
{
- private static $utils;
private $clientMock;
/** @var SparkPost */
private $resource;
@@ -59,7 +57,6 @@ class TransmissionTest extends \PHPUnit_Framework_TestCase
$this->clientMock = Mockery::mock('Http\Adapter\Guzzle6\Client');
$this->resource = new SparkPost($this->clientMock, ['key' => 'SPARKPOST_API_KEY', 'async' => false]);
- self::$utils = new ClassUtils($this->resource);
}
public function tearDown()