Skip to content

Instantly share code, notes, and snippets.

@takatama
Created April 23, 2014 06:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save takatama/11204878 to your computer and use it in GitHub Desktop.
Save takatama/11204878 to your computer and use it in GitHub Desktop.
<?php
require_once 'FizzBuzz.php';
class FizzBuzzTest extends PHPUnit_Framework_TestCase
{
/**
* @test
*/
public function say()
{
$fizzBuzz = new FizzBuzz();
$this->assertEquals('0', $fizzBuzz->say(0));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment