Merge pull request #12769 from marcusmoore/chore/publish-test-stubs

Publishes test stubs
This commit is contained in:
snipe 2023-04-04 01:28:47 -07:00 committed by GitHub
commit b376181cef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

13
stubs/test.stub Normal file
View 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
View file

@ -0,0 +1,13 @@
<?php
namespace {{ namespace }};
use Tests\TestCase;
class {{ class }} extends TestCase
{
public function testExample()
{
//
}
}