public static void ClassCleanup()
 {
     request.Dispose();
     request     = null;
     serviceRoot = null;
     TestUtil.ClearConfiguration();
 }
 public static void ClassCleanup()
 {
     request.Dispose();
     request = null;
     serviceRoot = null;
     TestUtil.ClearConfiguration();
 }
 public static void ClassInitialize(TestContext context)
 {
     TestUtil.ClearConfiguration();
     request             = (HttpBasedWebRequest)TestWebRequest.CreateForInProcessWcf();
     request.ServiceType = typeof(OpenWebDataService <CustomDataContext>);
     request.StartService();
     serviceRoot = request.ServiceRoot;
 }
 public static void ClassInitialize(TestContext context)
 {
     TestUtil.ClearConfiguration();
     request = (HttpBasedWebRequest)TestWebRequest.CreateForInProcessWcf();
     request.ServiceType = typeof(OpenWebDataService<CustomDataContext>);
     request.StartService();
     serviceRoot = request.ServiceRoot;
 }