Skip to content

Instantly share code, notes, and snippets.

@norberttech
Created April 12, 2016 07:41
Show Gist options
  • Select an option

  • Save norberttech/2676647f8a8cde4992dd579d2fe071f1 to your computer and use it in GitHub Desktop.

Select an option

Save norberttech/2676647f8a8cde4992dd579d2fe071f1 to your computer and use it in GitHub Desktop.
Simple Test Case
<?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