aboutsummaryrefslogtreecommitdiffstats
path: root/oni-php/snippets/php-mode/test-class
blob: c758fb4ecbce638ad9a4177a032b1f39a837281c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# -*- mode: snippet -*-
# name: test-class
# key: test
# --

use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Foundation\Testing\WithFaker;
use Tests\TestCase;

class ${1:`(file-name-sans-extension (file-name-nondirectory (buffer-file-name)))`} extends TestCase
{
    use RefreshDatabase, WithFaker;

    $0
}