public function testIsShuffling()
 {
     $string = new String('Lorem ipsum dolor');
     $result = $string->shuffle();
     $this->assertInstanceOf('Simple\\Type\\String', $result);
     $this->assertRegExp('/[Loremipsudl ]+/', $result->toString());
 }