Created
April 12, 2016 07:41
-
-
Save norberttech/2676647f8a8cde4992dd579d2fe071f1 to your computer and use it in GitHub Desktop.
Simple Test Case
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 SomethingTest extends \PHPUnit_Framework_TestCase | |
| { | |
| /** | |
| * @test | |
| */ | |
| it_should_do_something() | |
| { | |
| $this->thereIsSomethingGiven(); // Arrange | |
| $this->somethingHappens(); // Act | |
| $this->somethingIsExpected(); // Assert | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment