Extends
lithium\test\UnitSource
public function testMethodInspection() {
$result = Inspector::methods($this, null);
$this->assertTrue($result[0] instanceof ReflectionMethod);
$result = Inspector::info('lithium\core\Object::_init()');
$expected = '_init';
$this->assertEqual($expected, $result['name']);
$expected = 'void';
$this->assertEqual($expected, $result['tags']['return']);
}