15 lines
223 B
PHP
15 lines
223 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace BeyondCode\LaravelWebsockets\Tests;
|
||
|
|
|
||
|
|
use PHPUnit\Framework\TestCase;
|
||
|
|
|
||
|
|
class ExampleTest extends TestCase
|
||
|
|
{
|
||
|
|
/** @test */
|
||
|
|
public function true_is_true()
|
||
|
|
{
|
||
|
|
$this->assertTrue(true);
|
||
|
|
}
|
||
|
|
}
|