30 lines
651 B
PHP
30 lines
651 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Cachet HQ <support@cachethq.io>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace CachetHQ\Tests\Cachet;
|
|
|
|
use GrahamCampbell\TestBench\AbstractAppTestCase;
|
|
|
|
abstract class AbstractTestCase extends AbstractAppTestCase
|
|
{
|
|
/**
|
|
* Get the service provider class.
|
|
*
|
|
* @param \Illuminate\Contracts\Foundation\Application $app
|
|
*
|
|
* @return string
|
|
*/
|
|
protected function getServiceProviderClass($app)
|
|
{
|
|
return 'CachetHQ\Cachet\Providers\AppServiceProvider';
|
|
}
|
|
}
|