/**
  * @covers MicrosoftAzure\Storage\Common\Internal\Utilities::endsWith
  */
 public function testEndsWith()
 {
     // Setup
     $haystack = 'tesT';
     $needle = 't';
     $expected = true;
     // Test
     $actual = Utilities::endsWith($haystack, $needle, true);
     // Assert
     $this->assertEquals($expected, $actual);
 }