コード例 #1
0
 public void testLabel() throws CoreException, MalformedURLException {
   String label = "dummy label";
   Feature feature = getFeature();
   feature.setLabel(label);
   assertEquals(label, feature.getLabel());
 }
コード例 #2
0
 public void testProvider() throws CoreException, MalformedURLException {
   String provider = "not so dummy provider";
   Feature feature = getFeature();
   feature.setProvider(provider);
   assertEquals(provider, feature.getProvider());
 }