-
-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Johannes Schobel
committed
Jan 28, 2018
1 parent
2f94e4d
commit e01d252
Showing
7 changed files
with
81 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
|
||
namespace App\Containers\{{container-name}}\Tests; | ||
|
||
use App\Containers\{{container-name}}\Tests\TestCase as BaseTestCase; | ||
|
||
/** | ||
* Class {{class-name}}. | ||
* | ||
* This is the container API TestCase class. Use this class to add your container specific API related helper functions. | ||
*/ | ||
class {{class-name}} extends BaseTestCase | ||
{ | ||
// .. | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
|
||
namespace App\Containers\{{container-name}}\Tests; | ||
|
||
use App\Containers\{{container-name}}\Tests\TestCase as BaseTestCase; | ||
|
||
/** | ||
* Class {{class-name}}. | ||
* | ||
* This is the container CLI TestCase class. Use this class to add your container specific CLI related helper functions. | ||
*/ | ||
class {{class-name}} extends BaseTestCase | ||
{ | ||
// .. | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
|
||
namespace App\Containers\{{container-name}}\Tests; | ||
|
||
use App\Containers\{{container-name}}\Tests\TestCase as BaseTestCase; | ||
|
||
/** | ||
* Class {{class-name}}. | ||
* | ||
* This is the container WEB TestCase class. Use this class to add your container specific WEB related helper functions. | ||
*/ | ||
class {{class-name}} extends BaseTestCase | ||
{ | ||
// .. | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters