Created
June 18, 2016 19:23
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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