1
0
Fork 0
emacs-config/oni-php/snippets/php-mode/test-class

15 lines
No EOL
326 B
Text

# -*- 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
}