WOM Project Home Page / Documentation / Requirements / COR4
Requirement Number: COR4
Module: WOM Core
Name: Create a New WorkItem
Description:
This requirement involves the creation of a new workitem by the object model.
The following scenario should be enabled by this requirement:
Example:
Task t = new Task();
t.Priority = Priorities.High;
t.AssignedTo = "Heynemann_cp";
t.Title = "Test";
t.Description = "Test Description";
TaskManager tm = new TaskManager();
tm.Save(t);
By the end of the scenario above a WorkItem should have been created at the WorkItem Store with the WorkItemType of Task.
Start Iteration: Iteration 0.01 End Iteration: Iteration 0.01
Implemented: Yes
Check it out on CodePlex!
Comments (0)
You don't have permission to comment on this page.