Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed PHPUnit TestCase namespace #13

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .php_cs

This file was deleted.

4 changes: 2 additions & 2 deletions tests/AmazonAlexaDriverTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

use Mockery as m;
use BotMan\BotMan\Http\Curl;
use PHPUnit_Framework_TestCase;
use BotMan\BotMan\Messages\Outgoing\Question;
use PHPUnit\Framework\TestCase;
use Symfony\Component\HttpFoundation\Request;
use BotMan\BotMan\Drivers\Events\GenericEvent;
use Symfony\Component\HttpFoundation\Response;
Expand All @@ -15,7 +15,7 @@
use Techworker\Ssml\Element\Audio;
use Techworker\Ssml\SsmlBuilder;

class AmazonAlexaDriverTest extends PHPUnit_Framework_TestCase
class AmazonAlexaDriverTest extends TestCase
{
private function getDriver($responseData, $htmlInterface = null)
{
Expand Down
4 changes: 2 additions & 2 deletions tests/CardTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

namespace Tests;

use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase;
use BotMan\Drivers\AmazonAlexa\Extensions\Card;

class CardTest extends PHPUnit_Framework_TestCase
class CardTest extends TestCase
{
/** @test */
public function it_can_be_created()
Expand Down