Beispiel #1
0
 /**
  * @covers Rhumsaa\Uuid\Uuid::getInteger
  * @expectedException Rhumsaa\Uuid\Exception\UnsatisfiedDependencyException
  * @expectedExceptionMessage Cannot call Rhumsaa\Uuid\Uuid::getInteger without support for large integers
  */
 public function testGetInteger()
 {
     Uuid::$forceNoBigNumber = true;
     $uuid = Uuid::uuid1();
     $uuid->getInteger();
 }