Skip to content

Commit 410bc00

Browse files
committed
Don't use TestCase for all unit tests
1 parent 8910649 commit 410bc00

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
use Illuminate\Foundation\Testing\TestCase as IlluminateTestCase;
55

6-
class TestCase extends IlluminateTestCase
6+
abstract class TestCase extends IlluminateTestCase
77
{
88
/**
99
* Creates the application.

tests/Unit/GitHub/GistEmbedFormatterTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22
namespace Lio\Tests\Unit\GitHub;
33

44
use Lio\Github\GistEmbedFormatter;
5-
use Lio\Tests\TestCase;
65
use Mockery;
76

8-
class GistEmbedFormatterTest extends TestCase
7+
class GistEmbedFormatterTest extends \PHPUnit_Framework_TestCase
98
{
109
public function testCanCreate()
1110
{

tests/Unit/GitHub/GithubAuthenticatorTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22
namespace Lio\Tests\Unit\Github;
33

44
use Lio\Github\GithubAuthenticator;
5-
use Lio\Tests\TestCase;
65
use Mockery as m;
76

8-
class GithubAuthenticatorTest extends TestCase
7+
class GithubAuthenticatorTest extends \PHPUnit_Framework_TestCase
98
{
109
public function testCanCreateGithubAuthenticator()
1110
{

0 commit comments

Comments
 (0)