2020-06-27 07:14:06 +02:00
|
|
|
<?php
|
2020-09-14 13:11:46 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2020-06-27 07:14:06 +02:00
|
|
|
namespace Tests\Unit;
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
|
|
use Illuminate\Foundation\Testing\WithFaker;
|
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
class SentryTest extends TestCase
|
|
|
|
{
|
|
|
|
public function testSentryFiresAppropriately()
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
$e = new \Exception('Test Fire');
|
2020-06-27 07:14:06 +02:00
|
|
|
app('sentry')->captureException($e);
|
|
|
|
|
|
|
|
$this->assertTrue(true);
|
|
|
|
}
|
|
|
|
}
|