<?php declare(strict_types=1); /* * Create and customize a file named .docheader at the root of the project to change this message. */ namespace Irstea\MyProject\Tests; use Irstea\MyProject\MyClass; use PHPUnit\Framework\TestCase; /** * Les tests de la classe MyClass. */ class MyClassTest extends TestCase { public function testGetResponse(): void { $subject = new MyClass(); self::assertEquals(42, $subject->getResponse()); } }