public function testEndsWith()
 {
     $string = 'A string the check';
     $check = StringUtils::endsWith($string, 'check');
     $this->assertTrue($check);
 }