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

Commit 17ee84b

Browse files
committed
fix test namespacing
1 parent dbfa6cc commit 17ee84b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Generators/stubs/feature-test.stub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
namespace {{namespace}};
33

4-
use TestCase;
4+
use Tests\TestCase;
55
use {{feature_namespace}};
66

77
class {{testclass}} extends TestCase

src/Generators/stubs/job-test.stub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
namespace {{namespace}};
33

44
use {{job_namespace}};
5-
use PHPUnit_Framework_TestCase as TestCase;
5+
use Tests\TestCase;
66

77
class {{testclass}} extends TestCase
88
{

src/Generators/stubs/operation-test.stub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
namespace {{namespace}};
33

4-
use TestCase;
4+
use Tests\TestCase;
55
use {{operation_namespace}};
66

77
class {{testclass}} extends TestCase

0 commit comments

Comments
 (0)