Exemplo n.º 1
0
 /**
  * Tests String::getTruncatedText()
  * 
  */
 public function testGetTruncatedText()
 {
     $input = 'know thyself';
     $output = \Altumo\String\String::getTruncatedText($input, 10);
     $this->assertTrue($output === 'know...');
 }