Skip to content

Instantly share code, notes, and snippets.

@syntaqx
Created October 12, 2022 13:55
Show Gist options
  • Save syntaqx/9c1fdfab4e50a7b82649e2ad4857299d to your computer and use it in GitHub Desktop.
Save syntaqx/9c1fdfab4e50a7b82649e2ad4857299d to your computer and use it in GitHub Desktop.
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