public void TestInitialize()
 {
     _mockCategoryService = new Mock<ICategoryService>();
     _controller = new CategoryController(_mockCategoryService.Object);
 }
 public void TestCleanup()
 {
     _mockCategoryService.VerifyAll();
     _controller.Dispose();
     _controller = null;
 }