Initial commit
This commit is contained in:
@@ -0,0 +1,75 @@
|
||||
<?php
|
||||
|
||||
namespace Appvise\AppStoreNotifications\Tests;
|
||||
|
||||
use Appvise\AppStoreNotifications\NotificationsServiceProvider;
|
||||
use Exception;
|
||||
use Illuminate\Foundation\Exceptions\Handler;
|
||||
use Illuminate\Contracts\Debug\ExceptionHandler;
|
||||
use Orchestra\Testbench\TestCase as OrchestraTestCase;
|
||||
use CreateAppleNotificationsTable;
|
||||
|
||||
abstract class TestCase extends OrchestraTestCase
|
||||
{
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
|
||||
$this->setUpDatabase();
|
||||
}
|
||||
|
||||
/**
|
||||
* Set up the environment.
|
||||
*
|
||||
* @param \Illuminate\Foundation\Application $app
|
||||
*/
|
||||
protected function getEnvironmentSetUp($app)
|
||||
{
|
||||
$app['config']->set('database.default', 'sqlite');
|
||||
$app['config']->set('database.connections.sqlite', [
|
||||
'driver' => 'sqlite',
|
||||
'database' => ':memory:',
|
||||
'prefix' => '',
|
||||
]);
|
||||
|
||||
config(['appstore-server-notifications.shared_secret' => 'test_shared_secret']);
|
||||
}
|
||||
|
||||
protected function setUpDatabase()
|
||||
{
|
||||
include_once __DIR__.'/../database/migrations/create_apple_notifications_table.php.stub';
|
||||
|
||||
(new CreateAppleNotificationsTable())->up();
|
||||
}
|
||||
|
||||
/**
|
||||
* @param \Illuminate\Foundation\Application $app
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
protected function getPackageProviders($app)
|
||||
{
|
||||
return [
|
||||
NotificationsServiceProvider::class,
|
||||
];
|
||||
}
|
||||
|
||||
protected function disableExceptionHandling()
|
||||
{
|
||||
$this->app->instance(ExceptionHandler::class, new class extends Handler {
|
||||
public function __construct()
|
||||
{
|
||||
}
|
||||
|
||||
public function report(Exception $e)
|
||||
{
|
||||
}
|
||||
|
||||
public function render($request, Exception $exception)
|
||||
{
|
||||
throw $exception;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user