2018-11-20 08:54:06 +00:00
|
|
|
<?php
|
|
|
|
|
|
2018-11-20 10:32:56 +00:00
|
|
|
namespace BeyondCode\LaravelWebSockets\Tests;
|
2018-11-20 08:54:06 +00:00
|
|
|
|
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
|
|
|
|
|
|
class ExampleTest extends TestCase
|
|
|
|
|
{
|
|
|
|
|
/** @test */
|
|
|
|
|
public function true_is_true()
|
|
|
|
|
{
|
|
|
|
|
$this->assertTrue(true);
|
|
|
|
|
}
|
|
|
|
|
}
|