1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 21:22:58 +01:00
invoiceninja/tests/Unit/SentryTest.php

19 lines
369 B
PHP
Raw Normal View History

2020-06-27 07:14:06 +02:00
<?php
namespace Tests\Unit;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Foundation\Testing\WithFaker;
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);
}
}