public void tearDown() throws Exception {
}
@Test
public void testProjectServiceProvider() throws Exception {
Project project = rootProject;
MyCustomLookupEntry entry = project.getLookup().lookup(MyCustomLookupEntry.class);
assertNotNull("Lookup must contain entry: MyCustomLookupEntry", entry);
assertEquals("Must be registered with the currect project.",
project.getProjectDirectory(),
entry.getProject().getProjectDirectory());
}