invoiceninja/tests/Unit/SentryTest.php

26 lines
547 B
PHP
Raw Permalink Normal View History

2020-06-27 15:14:06 +10:00
<?php
2020-09-14 21:11:46 +10: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 21:11:46 +10:00
*
* @license https://www.elastic.co/licensing/elastic-license
2020-09-14 21:11:46 +10:00
*/
2020-06-27 15:14:06 +10:00
namespace Tests\Unit;
use Tests\TestCase;
class SentryTest extends TestCase
{
public function testSentryFiresAppropriately()
{
$e = new \Exception('Test Fire');
2020-06-27 15:14:06 +10:00
app('sentry')->captureException($e);
$this->assertTrue(true);
}
}