public void Services_Get_WithPluginServiceWebRequestPoco_ShouldReturnPluginService()
 {
     //------------Setup for test--------------------------
     var services = new Dev2.Runtime.ServiceModel.Services();
     var webRequestPoco = new WebRequestPoco { ResourceType = "PluginService" };
     //------------Execute Test---------------------------
     var service = services.Get(JsonConvert.SerializeObject(webRequestPoco), Guid.Empty, Guid.Empty);
     //------------Assert Results-------------------------
     Assert.IsNotNull(service);
     Assert.IsInstanceOfType(service, typeof(PluginService));
 }