Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
fix test namespacing
Browse files Browse the repository at this point in the history
  • Loading branch information
harris21 committed Oct 31, 2017
1 parent dbfa6cc commit 17ee84b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Generators/stubs/feature-test.stub
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
namespace {{namespace}};

use TestCase;
use Tests\TestCase;
use {{feature_namespace}};

class {{testclass}} extends TestCase
Expand Down
2 changes: 1 addition & 1 deletion src/Generators/stubs/job-test.stub
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
namespace {{namespace}};

use {{job_namespace}};
use PHPUnit_Framework_TestCase as TestCase;
use Tests\TestCase;

class {{testclass}} extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion src/Generators/stubs/operation-test.stub
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
namespace {{namespace}};

use TestCase;
use Tests\TestCase;
use {{operation_namespace}};

class {{testclass}} extends TestCase
Expand Down

0 comments on commit 17ee84b

Please sign in to comment.