Created
May 8, 2012 03:00
-
-
Save tiagodavi/2632223 to your computer and use it in GitHub Desktop.
soma.php
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 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