Merge pull request #12769 from marcusmoore/chore/publish-test-stubs
Publishes test stubs
This commit is contained in:
commit
b376181cef
2 changed files with 26 additions and 0 deletions
13
stubs/test.stub
Normal file
13
stubs/test.stub
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
namespace {{ namespace }};
|
||||
|
||||
use Tests\TestCase;
|
||||
|
||||
class {{ class }} extends TestCase
|
||||
{
|
||||
public function testExample()
|
||||
{
|
||||
//
|
||||
}
|
||||
}
|
13
stubs/test.unit.stub
Normal file
13
stubs/test.unit.stub
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
namespace {{ namespace }};
|
||||
|
||||
use Tests\TestCase;
|
||||
|
||||
class {{ class }} extends TestCase
|
||||
{
|
||||
public function testExample()
|
||||
{
|
||||
//
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue