public function testName()
 {
     foreach (self::TEST_NAMES as $method) {
         $inspect = new MethodInspector(self::TEST_CLASS, $method);
         $this->assertSame(self::TEST_CLASS . '::' . $method, $inspect->nameQualified());
         $this->assertSame(self::TEST_CLASS . '::' . $method, $inspect->name(true));
         $this->assertSame($method, $inspect->nameUnQualified());
         $this->assertSame($method, $inspect->name());
     }
 }