<?php
use PHPUnit\Framework\TestCase;
/**
* Basic unit tests.
*/
final class Test extends TestCase {
* Test if 1 === 1.
public function testEquality(): void {
$this->assertEquals( 1, 1 );
}