AddSprint() public method

Adds the given sprint
public AddSprint ( JelloScrum.Model.Entities.Sprint sprint ) : void
sprint JelloScrum.Model.Entities.Sprint The sprint.
return void
Ejemplo n.º 1
0
        public override void SetUp()
        {
            project = new Project();
            sprint = new Sprint();
            project.AddSprint(sprint);
            story = new Story(project, new User(), null, StoryType.UserStory);
            task = new Task();
            task2 = new Task();

            base.SetUp();
        }
Ejemplo n.º 2
0
        public override void SetUp()
        {
            project = new Project();

            task = new Task();
            gebruiker = new User();
            sprint = new Sprint();
            project.AddSprint(sprint);
            tijd = new TimeSpan(1, 30, 00); //1,5 uur

            story = new Story(project, gebruiker, null, StoryType.UserStory);
            story.AddTask(task);

            base.SetUp();
        }