/**
  * @test
  * @dataProvider isBlankExamples
  */
 public function isBlankWorks($string, $expected)
 {
     $helper = new StringHelper();
     $result = $helper->isBlank($string);
     $this->assertSame($expected, $result);
 }