Skip to content

Instantly share code, notes, and snippets.

@tiagodavi
Created May 8, 2012 03:00
Show Gist options
  • Save tiagodavi/2632223 to your computer and use it in GitHub Desktop.
Save tiagodavi/2632223 to your computer and use it in GitHub Desktop.
soma.php
<?php
class Test_Soma extends TestCase
{
public function test_soma()
{
$soma = 2 + 2;
$this->assertEquals(4, $soma);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment