Skip to content

Instantly share code, notes, and snippets.

@edwinheij
Created June 18, 2016 19:23
Show Gist options
  • Save edwinheij/d16112fde81bd3222a4fcd136866d0a9 to your computer and use it in GitHub Desktop.
Save edwinheij/d16112fde81bd3222a4fcd136866d0a9 to your computer and use it in GitHub Desktop.
Start nieuwe test @ laravel met Setup en Teardown method; saves you some time
<?php
class FakeTest extends TestCase{
public function setUp(){
parent::setUp();
}
public function tearDown(){
parent::tearDown();
Mockery::close();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment