assertEquals( Utils::suggestionList('', ['a']), ['a'] ); } /** * @see it('Returns empty array when there are no options') */ public function testReturnsEmptyArrayWhenThereAreNoOptions() : void { $this->assertEquals( Utils::suggestionList('input', []), [] ); } /** * @see it('Returns options sorted based on similarity') */ public function testReturnsOptionsSortedBasedOnSimilarity() : void { $this->assertEquals( Utils::suggestionList('abc', ['a', 'ab', 'abc']), ['abc', 'ab'] ); } }