Skip to content

Instantly share code, notes, and snippets.

@NandoKstroNet
Created May 25, 2017 15:41
Show Gist options
  • Save NandoKstroNet/d04f5153bc9ba7ac2d43be18cb4173d4 to your computer and use it in GitHub Desktop.
Save NandoKstroNet/d04f5153bc9ba7ac2d43be18cb4173d4 to your computer and use it in GitHub Desktop.
Arquivo criado no post Silex e Testes da Code Experts Learning
<?php
namespace App;
class SomaTest extends \PHPUnit_Framework_TestCase
{
public function testSeASomaFuncionaCorretamente()
{
$soma = new Soma();
$result = $soma->fazSoma(15, 15);
return $this->assertEquals(30, $result);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment