Publish test stubs

This commit is contained in:
Marcus Moore 2023-03-30 16:42:59 -07:00
parent 986c73982e
commit 44e05eecbf
No known key found for this signature in database
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()
{
//
}
}