Skip to content

Commit

Permalink
replace IntegrationTestCase with TestCase
Browse files Browse the repository at this point in the history
`IntegrationTestCase` deprecated
  • Loading branch information
saeideng authored Jan 16, 2022
1 parent 14afeee commit 761e18a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tests/TestCase/ApplicationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,17 @@
use Cake\Http\MiddlewareQueue;
use Cake\Routing\Middleware\AssetMiddleware;
use Cake\Routing\Middleware\RoutingMiddleware;
use Cake\TestSuite\IntegrationTestCase;
use Cake\TestSuite\IntegrationTestTrait;
use Cake\TestSuite\TestCase;
use InvalidArgumentException;

/**
* ApplicationTest class
*/
class ApplicationTest extends IntegrationTestCase
class ApplicationTest extends TestCase
{
use IntegrationTestTrait;

/**
* testBootstrap
*
Expand Down

0 comments on commit 761e18a

Please sign in to comment.