20 lines
		
	
	
		
			409 B
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			409 B
		
	
	
	
		
			PHP
		
	
	
| <?php
 | |
| 
 | |
| namespace OSS\Tests;
 | |
| 
 | |
| use OSS\Core\OssException;
 | |
| 
 | |
| class OssExceptionTest extends \PHPUnit\Framework\TestCase
 | |
| {
 | |
|     public function testOSS_exception()
 | |
|     {
 | |
|         try {
 | |
|             throw new OssException("ERR");
 | |
|             $this->assertTrue(false);
 | |
|         } catch (OssException $e) {
 | |
|             $this->assertNotNull($e);
 | |
|             $this->assertEquals($e->getMessage(), "ERR");
 | |
|         }
 | |
|     }
 | |
| }
 |