public function testReturnsReflectionWhenSourceHasClass()
 {
     $fileName = __DIR__ . '/../../Fixture/NoNamespace.php';
     $locator = new SingleFileSourceLocator($fileName);
     $reflectionClass = $locator->locateIdentifier($this->getMockReflector(), new Identifier('ClassWithNoNamespace', new IdentifierType(IdentifierType::IDENTIFIER_CLASS)));
     $this->assertSame('ClassWithNoNamespace', $reflectionClass->getName());
 }