1 | <?php |
||
18 | class DecoratedGeocoderTest extends \PHPUnit_Framework_TestCase { |
||
19 | |||
20 | public function testWhenInnerGeocoderHasResult_itGetsReturnedInArrayForm() { |
||
35 | |||
36 | public function testWhenInnerGeocoderHasNoResult_falseIsReturned() { |
||
45 | |||
46 | // public function testWhenInnerGeocoderHasNoResult_falseIsReturned() { |
||
47 | // $decoratedGeocoder = new \MapsDecoratedGeocoder( new InMemoryGeocoder( [] ), 'maw' ); |
||
48 | // |
||
49 | // $this->assertSame( [ 'maw' ], $decoratedGeocoder->getAliases() ); |
||
50 | // } |
||
51 | |||
52 | // TODO: test exception case if we decided to not use null in the interface |
||
53 | |||
54 | } |
||
55 |