Ejemplo n.º 1
0
 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);
 }