@@ 139-144 (lines=6) @@ | ||
136 | $this->assertTrue($instance->HasGeo()); |
|
137 | } |
|
138 | ||
139 | public function testHasGeoNortEast() |
|
140 | { |
|
141 | $instance = $this->getInstance(); |
|
142 | $instance->Lat = 20; |
|
143 | $instance->Lon = 20; |
|
144 | $this->assertTrue($instance->HasGeo()); |
|
145 | } |
|
146 | ||
147 | public function testHasGeoSouth() |
|
@@ 131-136 (lines=6) @@ | ||
128 | $this->assertTrue($instance->HasGeo()); |
|
129 | } |
|
130 | ||
131 | public function testHasGeoNorthWest() |
|
132 | { |
|
133 | $instance = $this->getInstance(); |
|
134 | $instance->Lat = 20; |
|
135 | $instance->Lon = -20; |
|
136 | $this->assertTrue($instance->HasGeo()); |
|
137 | } |
|
138 | ||
139 | public function testHasGeoNortEast() |
|
@@ 154-159 (lines=6) @@ | ||
151 | $this->assertTrue($instance->HasGeo()); |
|
152 | } |
|
153 | ||
154 | public function testHasGeoSouthWest() |
|
155 | { |
|
156 | $instance = $this->getInstance(); |
|
157 | $instance->Lat = -20; |
|
158 | $instance->Lon = -20; |
|
159 | $this->assertTrue($instance->HasGeo()); |
|
160 | } |
|
161 | ||
162 | public function testHasGeoSouthEast() |
|
@@ 162-167 (lines=6) @@ | ||
159 | $this->assertTrue($instance->HasGeo()); |
|
160 | } |
|
161 | ||
162 | public function testHasGeoSouthEast() |
|
163 | { |
|
164 | $instance = $this->getInstance(); |
|
165 | $instance->Lat = -20; |
|
166 | $instance->Lon = 20; |
|
167 | $this->assertTrue($instance->HasGeo()); |
|
168 | } |
|
169 | ||
170 | public function testHasGeoOrigin() |