1 | <?php |
||
14 | class PlaceTest extends TestCase |
||
15 | { |
||
16 | public static function testCreatingAPlace() |
||
23 | |||
24 | /** |
||
25 | * @dataProvider provideBadCoordinates |
||
26 | * @expectedException \Assert\AssertionFailedException |
||
27 | * |
||
28 | * @param array $badCoords |
||
29 | */ |
||
30 | public static function testCoordinates(array $badCoords) |
||
34 | |||
35 | public static function provideBadCoordinates(): array |
||
43 | |||
44 | /** |
||
45 | * @test |
||
46 | */ |
||
47 | public static function canMapPlaceCoords() |
||
56 | } |
||
57 |