1 | <?php |
||
8 | class FieldEmptyExceptionTest extends TestCase |
||
9 | { |
||
10 | /** |
||
11 | * @expectedException \Netgen\Bundle\OpenGraphBundle\Exception\FieldEmptyException |
||
12 | * @expectedExceptionMessage Field with identifier 'test' has empty value. |
||
13 | */ |
||
14 | public function testExceptionThrow() |
||
15 | { |
||
16 | throw new FieldEmptyException('test'); |
||
17 | } |
||
18 | } |
||
19 |