public function testUrlify() { // Arrange $a = 'I love https://google.com'; // Act $x = __::urlify($a); // Assert $this->assertEquals('I love <a href="https://google.com">google.com</a>', $x); }