29 lines
729 B
PHP
29 lines
729 B
PHP
<?php
|
|
|
|
namespace Xgenious\Paymentgateway\Tests;
|
|
|
|
use Orchestra\Testbench\TestCase as OrchestraTestCase;
|
|
use Illuminate\Foundation\Application;
|
|
|
|
/**
|
|
* Override the standard PHPUnit testcase with the Testbench testcase
|
|
*
|
|
* @see https://github.com/orchestral/testbench#usage
|
|
*/
|
|
abstract class TestCase extends OrchestraTestCase
|
|
{
|
|
/**
|
|
* Include the package's service provider(s)
|
|
*
|
|
* @see https://github.com/orchestral/testbench#custom-service-provider
|
|
* @param \Illuminate\Foundation\Application $app
|
|
* @return array
|
|
*/
|
|
protected function getPackageProviders($app)
|
|
{
|
|
return [
|
|
\Xgenious\Paymentgateway\Providers\PaymentgatewayServiceProvider::class
|
|
];
|
|
}
|
|
}
|