Skip to content

Commit

Permalink
test: fixed test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
mitulgolakiya committed Mar 4, 2020
1 parent 812bfbf commit 930d12d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 3 additions & 1 deletion tests/Helpers/HelpersTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

namespace Tests\Helpers;

class HelpersTest extends \PHPUnit_Framework_TestCase
use PHPUnit\Framework\TestCase;

class HelpersTest extends TestCase
{
public function test_model_name_from_table_name()
{
Expand Down
3 changes: 2 additions & 1 deletion tests/Utils/GeneratorFieldsInputUtilTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
namespace Tests;

use InfyOm\Generator\Utils\GeneratorFieldsInputUtil;
use PHPUnit\Framework\TestCase;

class GeneratorFieldsInputUtilTest extends \PHPUnit_Framework_TestCase
class GeneratorFieldsInputUtilTest extends TestCase
{
public function testValidateFieldInput()
{
Expand Down
4 changes: 2 additions & 2 deletions tests/Utils/ResponseUtilTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
namespace Tests\Utils;

use InfyOm\Generator\Utils\ResponseUtil;
use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase;

class ResponseUtilTest extends PHPUnit_Framework_TestCase
class ResponseUtilTest extends TestCase
{
public function testMakeResponse()
{
Expand Down

0 comments on commit 930d12d

Please sign in to comment.