public void testLabel() throws CoreException, MalformedURLException {
   String label = "dummy label";
   Feature feature = getFeature();
   feature.setLabel(label);
   assertEquals(label, feature.getLabel());
 }
 public void testProvider() throws CoreException, MalformedURLException {
   String provider = "not so dummy provider";
   Feature feature = getFeature();
   feature.setProvider(provider);
   assertEquals(provider, feature.getProvider());
 }