public void Setup()
 {
     handler = new RESTHandler();
     reflect = new Reflector(handler);
     currentUrl = new RESTfullUrl("http://foo.com/services/data/product/list.json");
     reflect.SetField("_url", currentUrl);
 }
 public void TearDown()
 {
     handler = null;
     reflect = null;
     currentUrl = null;
 }