String label = "testNonClasspathTypeFullPath";
String annotationLineStart = "\t@ContextConfiguration(value = { \"non-classpath/arb";
int position = testFileText.indexOf(label) + newlineLength + label.length() + annotationLineStart.length() - 1;
ContentAssistInvocationContext context = createTestContext(position);
List<ICompletionProposal> proposals = computer.computeCompletionProposals(context, null);
String errorMessage = "Expecting 1 proposal, but got " + proposals.size();
assertTrue(errorMessage, proposals.size() == 1);
String expectedString = "file:non-classpath/arbitrary.xml";