Skip to content

Instantly share code, notes, and snippets.

View wanis's full-sized avatar

Mažvydas Skuodas wanis

  • Kaunas, Lithuania
View GitHub Profile
@wanis
wanis / Test.php
Created December 18, 2013 18:40
first public TDD in Kaunas!!!
<?php
class Test extends PHPUnit_Framework_TestCase {
/**
* @var Calc
*/
private $calc;
protected function setUp() {
$this->calc = new Calc();
}