1 | <?php |
||
7 | class EnumTest extends \PHPUnit\Framework\TestCase |
||
8 | { |
||
9 | /** |
||
10 | * @dataProvider invalidDataProvider |
||
11 | * @expectedException \InvalidArgumentException |
||
12 | * @expectedExceptionMessage is not part from Klamius\Enum\Tests\Fixtures\FixtureEnum class |
||
13 | */ |
||
14 | public function testCreatingEnumWithNotExistingValue($value) |
||
18 | |||
19 | public function invalidDataProvider() |
||
27 | |||
28 | public function testCreatingEnumWithExistingValue() |
||
33 | } |
||
34 |