LimitCharacters()} */ function testLimitCharacters() { $cases = array( 'The little brown fox jumped over the lazy cow.' => 'The little brown fox...', '

This is some text in a paragraph.

' => 'This is some text in...' ); foreach($cases as $originalValue => $expectedValue) { $textObj = new HTMLText('Test'); $textObj->setValue($originalValue); $this->assertEquals($expectedValue, $textObj->LimitCharacters()); } } } ?>