public void TestGetProduct()
 {
     var expected = new Product {
         Id = 1,
         Name = "Video Card",
         Description = "Video card for PC",
         Quantity = 37,
         Price = new decimal(159.99),
         Featured = true,
         Showcase = true,
     };
     var response = Client.Get(new Product { Id = 1 });
     TestContext.WriteLine("Expected: {0}\n", expected.Dump());
     TestContext.WriteLine("Actual: {0}\n", response.Product.Dump());
     Assert.AreEqual(expected, response.Product);
 }