mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 00:27:32 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			379 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			379 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?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");
 | 
						|
        app('sentry')->captureException($e);
 | 
						|
 | 
						|
        $this->assertTrue(true);
 | 
						|
    
 | 
						|
    }
 | 
						|
}
 |