Created
October 12, 2022 13:55
-
-
Save syntaqx/9c1fdfab4e50a7b82649e2ad4857299d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Chase Pierce | |
:flag-ua: 12:38 PM | |
<?php declare(strict_types=1); | |
use PHPUnit\Framework\TestCase; | |
final class TechByteTest extends TestCase | |
{ | |
public function testTodaysPresentation(): void | |
{ | |
$this->assertEquals( | |
'was very good', | |
(new TechByte())->todaysPresentation() | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment