Skip to content

Instantly share code, notes, and snippets.

@tim-andes
Forked from sameernyaupane/CalculateTest.php
Created May 20, 2021 22:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tim-andes/3dfcb18c6c065ec8432ad35deebdb026 to your computer and use it in GitHub Desktop.
Save tim-andes/3dfcb18c6c065ec8432ad35deebdb026 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(): void
{
$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);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment