Skip to content

Instantly share code, notes, and snippets.

@sameernyaupane
Last active May 20, 2021 22:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sameernyaupane/6797564445c8c989a2c22f82431c99fd to your computer and use it in GitHub Desktop.
Save sameernyaupane/6797564445c8c989a2c22f82431c99fd to your computer and use it in GitHub Desktop.
<?php
namespace Tests\Unit;
use App\Calculate;
use PHPUnit\Framework\TestCase;
class CalculateTest extends TestCase
{
public function setUp()
{
$this->calculate = new Calculate();
}
public function test_areaOfSquare_WhenCalledWithLength2_Return4()
{
$length = 2;
$response = $this->calculate->areaOfSquare($length);
$this->assertTrue(is_int($response));
$this->assertEquals(4, $response);
}
public function test_areaOfSquare_WhenCalledWithLength6_Return36()
{
$length = 6;
$response = $this->calculate->areaOfSquare($length);
$this->assertTrue(is_int($response));
$this->assertEquals(36, $response);
}
}
@tim-andes
Copy link

tim-andes commented May 20, 2021

Error with current version. I forked and added : void to the setUp function

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment