Example #1
0
 /**
  * @covers MicrosoftAzure\Storage\Common\Internal\Validate::isDouble
  */
 public function testIsDoubleFail()
 {
     // Setup
     $this->setExpectedException('\\InvalidArgumentException');
     $value = 'testInvalidDoubleValue';
     // Test
     Validate::isDouble($value, 'value');
     // Assert
 }