Remove get_addressrank_label. Move get_searchrank_label to PHP

This commit is contained in:
marc tobias
2019-01-28 19:38:05 +01:00
parent bfb20aaa47
commit 853b536394
4 changed files with 31 additions and 91 deletions

View File

@@ -173,4 +173,12 @@ class LibTest extends \PHPUnit\Framework\TestCase
// start == end
$this->closestHouseNumberEvenOddOther(50, 50, 0.5, array('even' => 50, 'odd' => 50, 'other' => 50));
}
public function testGetSearchRankLabel()
{
$this->assertEquals('unknown', getSearchRankLabel(null));
$this->assertEquals('continent', getSearchRankLabel(0));
$this->assertEquals('continent', getSearchRankLabel(1));
$this->assertEquals('other: 30', getSearchRankLabel(30));
}
}