diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-09-16 15:10:09 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-09-16 15:10:09 +0300 |
| commit | e161c0471aa5703882e321b8e6661579dc4e0533 (patch) | |
| tree | 6c0ea156ec9f9949a40ef933e3607782ef8e317f /Software/Visual_Studio/Tango.UnitTesting | |
| parent | 1c74b1f3e6fd3f64936df890de14e162303ee1fb (diff) | |
| download | Tango-e161c0471aa5703882e321b8e6661579dc4e0533.tar.gz Tango-e161c0471aa5703882e321b8e6661579dc4e0533.zip | |
Implemented bug reporting Machine SN & Embedded Version.
Implemented ProcessParameters.DryerBufferLengthMeters.
Diffstat (limited to 'Software/Visual_Studio/Tango.UnitTesting')
| -rw-r--r-- | Software/Visual_Studio/Tango.UnitTesting/TFS/TFS_TST.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Software/Visual_Studio/Tango.UnitTesting/TFS/TFS_TST.cs b/Software/Visual_Studio/Tango.UnitTesting/TFS/TFS_TST.cs index 613cfb8c5..c3238ec40 100644 --- a/Software/Visual_Studio/Tango.UnitTesting/TFS/TFS_TST.cs +++ b/Software/Visual_Studio/Tango.UnitTesting/TFS/TFS_TST.cs @@ -127,7 +127,7 @@ namespace Tango.UnitTesting.TFS item.Description = "This is a test description"; item.FoundInBuild = "1.0.0.9"; - item.Iteration = project.Iterations.First(); + item.Iteration = project.Iterations.FirstOrDefault(); item.Priority = Priority.Priority3; item.Severity = Severity.Medium; item.State = State.New; @@ -136,6 +136,8 @@ namespace Tango.UnitTesting.TFS item.Tags.Add(project.Tags.First()); item.Title = "Test Bug"; item.Type = WorkItemType.Bug; + item.EmbeddedVersion = "4.0.0.0"; + item.MachineSerialNumber = "0008"; var workItem = client.UploadWorkItem(project, item).Result; |
