public function testIsRemovingNonAlpha()
 {
     $string = new String('Lorem !15@()!@##$*(dolor');
     $result = $string->removeNonAlpha();
     $this->assertInstanceOf('Simple\\Type\\String', $result);
     $this->assertEquals('Lorem dolor', $result->toString());
 }