• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

MeindertN / RoboClerk / 14742685946

29 Apr 2025 10:37PM UTC coverage: 85.509% (-0.2%) from 85.705%
14742685946

push

github

MeindertN
fixed test

1224 of 1426 branches covered (85.83%)

Branch coverage included in aggregate %.

4122 of 4826 relevant lines covered (85.41%)

130.83 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

69.44
/RoboClerk/Items/SoftwareSystemTestItem.cs
1
using System;
2
using System.Collections.Generic;
3

4
namespace RoboClerk
5
{
6
    public class SoftwareSystemTestItem : LinkedItem
7
    {
8
        private string testCaseState = string.Empty;
140✔
9
        private string testCaseDescription = string.Empty;
140✔
10
        private bool testCaseAutomated = false;
140✔
11
        private bool testCaseToUnitTest = false;
140✔
12
        private List<TestStep> testCaseSteps = new List<TestStep>();
140✔
13

14
        public SoftwareSystemTestItem()
140✔
15
        {
140✔
16
            type = "SoftwareSystemTest";
140✔
17
            id = Guid.NewGuid().ToString();
140✔
18
        }
140✔
19

20
        public string TestCaseState
21
        {
22
            get => testCaseState;
59✔
23
            set => testCaseState = value;
22✔
24
        }
25

26
        public string TestCaseDescription
27
        {
28
            get => testCaseDescription;
60✔
29
            set => testCaseDescription = value;
23✔
30
        }
31

32
        public IEnumerable<TestStep> TestCaseSteps
33
        {
34
            get => testCaseSteps;
60✔
35
        }
36

37
        public bool TestCaseAutomated
38
        {
39
            get => testCaseAutomated;
81✔
40
            set => testCaseAutomated = value;
37✔
41
        }
42

43
        public bool TestCaseToUnitTest
44
        {
45
            get => testCaseToUnitTest;
61✔
46
            set => testCaseToUnitTest = value;
21✔
47
        }
48

49
        public void AddTestCaseStep(TestStep step)
50
        {
41✔
51
            testCaseSteps.Add(step);
41✔
52
        }
41✔
53

54
        public void ClearTestCaseSteps()
55
        {
1✔
56
            testCaseSteps.Clear();
1✔
57
        }
1✔
58

59
        public void KickToUnitTest(string id)
60
        {
×
61
            if (id != null && id.Length > 0)
×
62
            {
×
63
                testCaseToUnitTest = true;
×
64
                linkedItems.Add(new ItemLink(id, ItemLinkType.UnitTest));
×
65
            }
×
66
        }
×
67
    }
68
}
69

STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc