Example #1
0
 /**
  * Test if the `getConstantByValue` method returns null if no constant with this value exists.
  */
 public function testGetConstantByValueReturnsNull()
 {
     $class = new ReflectionClass(__CLASS__);
     $this->assertNull($class->getConstantByValue(100));
 }