@Test
 public void testFindByNativeType() throws PluginNotFoundException {
   assertNotNull(provider.findByNativeType("YAWL 2.2"));
   try {
     provider.findByNativeType("invalid");
     fail();
   } catch (PluginNotFoundException e) {
   }
 }