1 | <?php |
||
14 | class TestMarkerModel extends TestCase { |
||
15 | |||
16 | /** |
||
17 | * @var Marker_Model |
||
18 | */ |
||
19 | private $_model; |
||
20 | |||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | private $_address = '1600 Amphitheatre Parkway Mountain View CA'; |
||
25 | |||
26 | /** |
||
27 | * @var Mock |
||
28 | */ |
||
29 | private $_geocoder; |
||
30 | |||
31 | /** |
||
32 | * @var array |
||
33 | */ |
||
34 | private $_latlng = ['lat' => 100.2345325, 'lng' => -45.23423423567]; |
||
35 | |||
36 | public function setUp() { |
||
45 | |||
46 | |||
47 | /** |
||
48 | * @covers ::latlng_object |
||
49 | */ |
||
50 | public function testLatLngObject() { |
||
56 | |||
57 | /** |
||
58 | * @covers ::_geocoder |
||
59 | */ |
||
60 | public function testGeocoder() { |
||
63 | |||
64 | /** |
||
65 | * @covers ::_geocoder |
||
66 | */ |
||
67 | public function testCreateGeocoder() { |
||
71 | } |