benbot/test/Commands/AsciiArtTest.php

19 lines
308 B
PHP
Executable File

<?php
namespace BenBot\Tests;
use PHPUnit\Framework\TestCase;
/**
* @covers BenBot\Commands\AsciiArt
*/
final class AsciiArtTest extends TestCase
{
public function testTrueisTrue(): void
{
$true = true;
$this->assertTrue($true);
$this->assertEquals($true, true);
}
}