13 lines
170 B
PHP
13 lines
170 B
PHP
<?php
|
|
|
|
namespace Test\Unit;
|
|
|
|
use Test\TestCase;
|
|
|
|
class ProviderTest extends TestCase
|
|
{
|
|
public function testHelloWorld()
|
|
{
|
|
$this->assertTrue(true);
|
|
}
|
|
} |