Extends
lithium\test\Unit
Tests that class and namepace names which are equivalent in a case-insensitive search still
match properly.
Returns
voidSource
public function testCaseSensitiveIdentifiers() {
$result = Inspector::type('lithium\storage\Cache');
$expected = 'class';
$this->assertEqual($expected, $result);
$result = Inspector::type('lithium\storage\cache');
$expected = 'namespace';
$this->assertEqual($expected, $result);
}