Total Complexity | 1 |
Total Lines | 11 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
24 | final class SkiDataMissingStartRecordFormatExceptionTest extends PHPUnit_Framework_TestCase { |
||
25 | |||
26 | /** |
||
27 | * Tests the __construct() method. |
||
28 | * |
||
29 | * @return void |
||
30 | */ |
||
31 | public function testConstruct() { |
||
32 | |||
33 | $ex = new SkiDataMissingStartRecordFormatException("", 0); |
||
34 | $this->assertEquals("The start record format is missing", $ex->getMessage()); |
||
35 | } |
||
38 |