You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
588 B
35 lines
588 B
<?php
|
|
|
|
namespace RouterOS\Tests\Laravel;
|
|
|
|
use RouterOS\Laravel\Facade;
|
|
use RouterOS\Laravel\ServiceProvider;
|
|
use Orchestra\Testbench\TestCase as Orchestra;
|
|
|
|
/**
|
|
* Class TestCase
|
|
*
|
|
* @package Tests
|
|
*/
|
|
abstract class TestCase extends Orchestra
|
|
{
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
protected function getPackageProviders($app): array
|
|
{
|
|
return [
|
|
ServiceProvider::class,
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
protected function getPackageAliases($app): array
|
|
{
|
|
return [
|
|
'RouterOS' => Facade::class,
|
|
];
|
|
}
|
|
}
|