mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-24 05:04:07 -08:00
Publish test stubs
This commit is contained in:
parent
986c73982e
commit
44e05eecbf
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…
Reference in a new issue