public function testCanCheckIfIsEmail()
 {
     $this->assertTrue(Strings::isEmail('*****@*****.**'));
     $this->assertFalse(Strings::isEmail('foobar'));
 }