1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/tests/Unit/SentryTest.php

25 lines
533 B
PHP
Raw Normal View History

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) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2020-09-14 13:11:46 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
2020-06-27 07:14:06 +02:00
namespace Tests\Unit;
use Tests\TestCase;
class SentryTest extends TestCase
{
public function testSentryFiresAppropriately()
{
$e = new \Exception('Test Fire');
2020-06-27 07:14:06 +02:00
app('sentry')->captureException($e);
$this->assertTrue(true);
}
}