22 lines
395 B
PHP
22 lines
395 B
PHP
<?php
|
|
|
|
namespace Laracon21\Combinations\Tests;
|
|
|
|
use Orchestra\Testbench\TestCase;
|
|
use Laracon21\Combinations\CombinationsServiceProvider;
|
|
|
|
class ExampleTest extends TestCase
|
|
{
|
|
|
|
protected function getPackageProviders($app)
|
|
{
|
|
return [CombinationsServiceProvider::class];
|
|
}
|
|
|
|
/** @test */
|
|
public function true_is_true()
|
|
{
|
|
$this->assertTrue(true);
|
|
}
|
|
}
|