/**
  * Checks if the "following" method basically works with word iteration
  *
  * @test
  */
 public function followingBasicallyWorks()
 {
     $iterator = new TextIterator('This is a test string. Let\'s iterate it by word', TextIterator::WORD);
     $this->assertEquals($iterator->following(11), 14, 'Wrong offset for the following element returned.');
 }