Advertisement
Guest User

Untitled

a guest
Apr 26th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <snippet>
  2. <content><![CDATA[
  3. <?php
  4.  
  5. namespace Tests\Unit;
  6.  
  7. use Tests\TestCase;
  8. use Illuminate\Foundation\Testing\DatabaseMigrations;
  9. use Illuminate\Foundation\Testing\DatabaseTransactions;
  10.  
  11. class ${TM_FILENAME/(\w+)\.php/\1/g} extends TestCase
  12. {
  13.  
  14. use DatabaseMigrations;
  15.  
  16. /** @test */
  17. public function it_${1}()
  18. {
  19.  
  20. }
  21.  
  22. }
  23.  
  24. ]]></content>
  25. <!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
  26. <tabTrigger>testclass</tabTrigger>
  27. <!-- Optional: Set a scope to limit where the snippet will trigger -->
  28. <scope></scope>
  29. </snippet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement