Skip to content

Commit 44e05ee

Browse files
committed
Publish test stubs
1 parent 986c739 commit 44e05ee

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

stubs/test.stub

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace {{ namespace }};
4+
5+
use Tests\TestCase;
6+
7+
class {{ class }} extends TestCase
8+
{
9+
public function testExample()
10+
{
11+
//
12+
}
13+
}

stubs/test.unit.stub

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace {{ namespace }};
4+
5+
use Tests\TestCase;
6+
7+
class {{ class }} extends TestCase
8+
{
9+
public function testExample()
10+
{
11+
//
12+
}
13+
}

0 commit comments

Comments
 (0)