Skip to content

Commit 2c92cce

Browse files
committedDec 21, 2020
Clean tests phpdoc
1 parent bbb3088 commit 2c92cce

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed
 

‎src/Common/Tests/Model/AddressCollectionTest.php

-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@
2020
*/
2121
class AddressCollectionTest extends TestCase
2222
{
23-
/**
24-
* @expectedException \Geocoder\Exception\CollectionIsEmpty
25-
*/
2623
public function testFirstOnEmpty()
2724
{
2825
$this->expectException(\Geocoder\Exception\CollectionIsEmpty::class);

‎src/Provider/LocationIQ/Tests/LocationIQTest.php

-6
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@ protected function getCacheDir()
2626
return __DIR__.'/.cached_responses';
2727
}
2828

29-
/**
30-
* @expectedException \Geocoder\Exception\InvalidServerResponse
31-
*/
3229
public function testGeocodeWithAddressGetsEmptyContent()
3330
{
3431
$this->expectException(\Geocoder\Exception\InvalidServerResponse::class);
@@ -37,9 +34,6 @@ public function testGeocodeWithAddressGetsEmptyContent()
3734
$provider->geocodeQuery(GeocodeQuery::create('Läntinen Pitkäkatu 35, Turku'));
3835
}
3936

40-
/**
41-
* @expectedException \Geocoder\Exception\InvalidServerResponse
42-
*/
4337
public function testGeocodeWithAddressGetsEmptyXML()
4438
{
4539
$this->expectException(\Geocoder\Exception\InvalidServerResponse::class);

0 commit comments

Comments
 (0)
Please sign in to comment.