use of org.eclipse.xtext.naming.IQualifiedNameConverter.DefaultImpl in project xtext-core by eclipse.
the class QualifiedNameTest method testBug354473.
@Test
public void testBug354473() {
DefaultImpl impl = new IQualifiedNameConverter.DefaultImpl();
QualifiedName name = impl.toQualifiedName(".");
ImportNormalizer normalizer = new ImportNormalizer(QualifiedName.create("Test"), true, false);
assertNull(normalizer.resolve(name));
}
Aggregations