You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
create Calculator.php in src with the following content:
<?php
namespace CodingTest;
class Calculator
{
public function __construct()
{
}
}
create CalculatorTest.php in tests with following content:
<?php
use PHPUnit\Framework\TestCase;
use CodingTest\Calculator;
class CalculatorTest extends TestCase
{
public function testFoo()
{
$cal = new Calculator();
$this->assertTrue(true);
}
}
execute the test
vendor/bin/phpunit --colors tests/CalculatorTest.php