public void CurrentIteration()
        {
            int projectId = 3;
            var storyService = new Mock<IStoryProvider>();

            storyService.Setup(e => e.GetStories(It.Is<long>(je => je == 3), IterationType.Current)).Returns(new List<Story>());

            var controller = new StoriesController(storyService.Object);
            var result = controller.CurrentIteration(projectId);
            var viewResult = result as ViewResult;
            Assert.NotNull(viewResult);
            Assert.IsInstanceOf<ProjectStoryViewModel>(viewResult.Model);
            storyService.Verify();
        }