Requirements Summary | ||
---|---|---|
Count | Percentage | |
#Requirements | 24 | 100.0% |
Manual Requirements | 0 | 0.0% |
Manual & Auto Requirements | 0 | 0.0% |
Automated Requirements | 24 | 100.0% |
Invalid | 0 | 0.0% |
PASS | 24 | 100.0% |
FAIL | 0 | 0.0% |
Not tested | 0 | 0.0% |
Protocol Summary | ||
---|---|---|
Count | Percentage | |
#Protocols | 9 | 100.0% |
PASS | 9 | 100.0% |
FAIL | 0 | 0.0% |
TP-001: basic calls | Start date : 2024-10-22 14:41:47 MDT |
At: test_tp001_basic.py(37) | Requirements : see below |
Software Version: N/A | Serial number: N/A |
Objectives: N/A | |
Preconditions: N/A | Deviations: N/A |
Step | Req. | Execution Instructions | Expected | Actual | Pass / Fail | Date |
---|---|---|---|---|---|---|
1 | N/A | verify initial values | None | None | PASS | 2024-10-22 14:41:47 tester: auto None |
2 | SRS-001 | verify Average values are set correctly | 1 | 1.0 | PASS | 2024-10-22 14:41:47 tester: auto test_tp001_basic.py(90) |
3 | SRS-001 | verify Counter values are set correctly | -1 | -1 | PASS | 2024-10-22 14:41:47 tester: auto test_tp001_basic.py(95) |
4 | SRS-001 | verify MinMax values are set correctly | 4 | 4 | PASS | 2024-10-22 14:41:47 tester: auto test_tp001_basic.py(85) |
5 | SRS-001 | verify Stddev values are set correctly | 0.7071067811865476 | 0.7071067811865476 | PASS | 2024-10-22 14:41:47 tester: auto test_tp001_basic.py(79) |
6 | SRS-002 | verify calling create_xx() is ignored | 0.7071067811865476 | 0.7071067811865476 | PASS | 2024-10-22 14:41:47 tester: auto test_tp001_basic.py(112) |
7 | SRS-003 | verify init() resets all values | True | True | PASS | 2024-10-22 14:41:47 tester: auto test_tp001_basic.py(130) |
Req. | Desc. |
---|---|
SRS-001 | If create_xx() is not called, the values shall be created as if create_xx() was called |
SRS-002 | If create_xx() is called and the stat already exists, the create_xx() shall be ignored |
SRS-003 | If init is called, all stats are reset |
TP-002: tests based on Average | Start date : 2024-10-22 14:41:47 MDT |
At: test_tp002_average.py(37) | Requirements : see below |
Software Version: N/A | Serial number: N/A |
Objectives: N/A | |
Preconditions: N/A | Deviations: N/A |
Step | Req. | Execution Instructions | Expected | Actual | Pass / Fail | Date |
---|---|---|---|---|---|---|
1 | N/A | verify initial values | None | None | PASS | 2024-10-22 14:41:47 tester: auto None |
2 | SRS-020 | verify initial values are set correctly | True | True | PASS | 2024-10-22 14:41:47 tester: auto test_tp002_average.py(45) |
3 | SRS-021 SRS-022 |
verify a single value is reported correctly | 10.0 | 10.0 | PASS | 2024-10-22 14:41:47 tester: auto test_tp002_average.py(50) |
4 | SRS-021 SRS-022 |
verify a multiple values are reported correctly | 15.0 | 15.0 | PASS | 2024-10-22 14:41:47 tester: auto test_tp002_average.py(55) |
5 | SRS-020 SRS-023 |
verify after init(), initial values are reported correctly | True | True | PASS | 2024-10-22 14:41:47 tester: auto test_tp002_average.py(60) |
Req. | Desc. |
---|---|
SRS-020 | If no values were provided, the Average interface shall report NAN and num_elements == 0 |
SRS-021 | If a value is provided, the Average interface shall be indicate one more than the previous num_elementss |
SRS-022 | If a value is provided, the Average interface shall be indicate the average all values provided |
SRS-023 | If init is called, the Average interface shall reset the num_elements to 0 and average NAN |
TP-003: tests based on Counters | Start date : 2024-10-22 14:41:47 MDT |
At: test_tp003_counter.py(36) | Requirements : see below |
Software Version: N/A | Serial number: N/A |
Objectives: N/A | |
Preconditions: N/A | Deviations: N/A |
Step | Req. | Execution Instructions | Expected | Actual | Pass / Fail | Date |
---|---|---|---|---|---|---|
1 | N/A | verify initial values | None | None | PASS | 2024-10-22 14:41:47 tester: auto None |
2 | SRS-040 | verify initial values are set correctly | 0 | 0 | PASS | 2024-10-22 14:41:47 tester: auto test_tp003_counter.py(43) |
3 | SRS-041 | verify an increment is reported correctly | 1 | 1 | PASS | 2024-10-22 14:41:47 tester: auto test_tp003_counter.py(47) |
4 | SRS-042 | verify an decrement is reported correctly | -1 | -1 | PASS | 2024-10-22 14:41:47 tester: auto test_tp003_counter.py(52) |
5 | SRS-040 SRS-043 |
verify after init(), initial values are reported correctly | 0 | 0 | PASS | 2024-10-22 14:41:47 tester: auto test_tp003_counter.py(56) |
6 | SRS-044 | verify after clear_counter(), clears only the one counter | 0 | 0 | PASS | 2024-10-22 14:41:47 tester: auto test_tp003_counter.py(66) |
Req. | Desc. |
---|---|
SRS-040 | If no values were provided, the Counter interface shall report 0 |
SRS-041 | If a counter is incremented, the Counter interface shall report 1 more than the previous value |
SRS-042 | If a counter is decremented, the Counter interface shall report 1 less than the previous value |
SRS-043 | If init is called, the Counter interface shall reset the value to 0 |
SRS-044 | if clear_counter is called, the Counter interface shall reset the value to 0 |
TP-004: tests based on Min/Max | Start date : 2024-10-22 14:41:47 MDT |
At: test_tp004_minmax.py(36) | Requirements : see below |
Software Version: N/A | Serial number: N/A |
Objectives: N/A | |
Preconditions: N/A | Deviations: N/A |
Step | Req. | Execution Instructions | Expected | Actual | Pass / Fail | Date |
---|---|---|---|---|---|---|
1 | N/A | verify initial values | None | None | PASS | 2024-10-22 14:41:47 tester: auto None |
2 | SRS-060 | verify initial values are set correctly | 0 | 0 | PASS | 2024-10-22 14:41:47 tester: auto test_tp004_minmax.py(45) |
3 | SRS-060 SRS-061 SRS-062 |
verify a minimum value is reported correctly | 2 | 2 | PASS | 2024-10-22 14:41:47 tester: auto test_tp004_minmax.py(54) |
4 | SRS-060 SRS-061 SRS-062 |
verify a maximum is reported correctly | 3 | 3 | PASS | 2024-10-22 14:41:47 tester: auto test_tp004_minmax.py(60) |
5 | SRS-060 SRS-063 |
verify after init(), initial values are reported correctly | 0 | 0 | PASS | 2024-10-22 14:41:47 tester: auto test_tp004_minmax.py(66) |
Req. | Desc. |
---|---|
SRS-060 | If no values were provided, the MinMax interface shall report None for values and 0 for num_elements |
SRS-061 | If the added value is the least value, the MinMax interface shall report it as minimum |
SRS-062 | If the added value is the greatest value, the MinMax interface shall report it as maximum |
SRS-063 | If init is called, the MinMax interface shall reset the values to None and 0 for num_elements |
TP-005: tests based on Stddev | Start date : 2024-10-22 14:41:47 MDT |
At: test_tp005_stddev.py(38) | Requirements : see below |
Software Version: N/A | Serial number: N/A |
Objectives: N/A | |
Preconditions: N/A | Deviations: N/A |
Step | Req. | Execution Instructions | Expected | Actual | Pass / Fail | Date |
---|---|---|---|---|---|---|
1 | N/A | verify initial values | None | None | PASS | 2024-10-22 14:41:47 tester: auto None |
2 | SRS-080 | verify initial values are set correctly | 0 | 0 | PASS | 2024-10-22 14:41:47 tester: auto test_tp005_stddev.py(48) |
3 | SRS-081 | verify a single updated value reports correctly | 1 | 1 | PASS | 2024-10-22 14:41:47 tester: auto test_tp005_stddev.py(58) |
4 | SRS-082 | verify two or more updated values reports correctly | 3 | 3 | PASS | 2024-10-22 14:41:47 tester: auto test_tp005_stddev.py(75) |
5 | SRS-080 SRS-083 |
verify after init(), initial values are reported correctly | 0 | 0 | PASS | 2024-10-22 14:41:47 tester: auto test_tp005_stddev.py(82) |
Req. | Desc. |
---|---|
SRS-080 | If no values were provided, the Stddev interface shall report NAN for stdev, variance and mean values and 0 for num_elements |
SRS-081 | If one value is provided, the Stddev interface shall report NAN for stdev, variance, the value for mean, and 1 for num_elements |
SRS-082 | If two or more valus are provided, the Stddev interface shall report correct valules for stdev, variance, mean, and the num_elements |
SRS-083 | If init is called, the Stddev interface shall reset the values to NAN for stdev, variance and mean values and 0 for num_elements |
TP-006: do full report | Start date : 2024-10-22 14:41:47 MDT |
At: test_tp006_report.py(37) | Requirements : see below |
Software Version: N/A | Serial number: N/A |
Objectives: N/A | |
Preconditions: N/A | Deviations: N/A |
Step | Req. | Execution Instructions | Expected | Actual | Pass / Fail | Date |
---|---|---|---|---|---|---|
1 | N/A | verify initial values | None | None | PASS | 2024-10-22 14:41:47 tester: auto None |
2 | SRS-010 | verify empty report is generated correctly | ---- Stats: | ---- Stats: | PASS | 2024-10-22 14:41:47 tester: auto test_tp006_report.py(48) |
3 | SRS-010 | verify report for Average is generated correctly | >>> end of Averages | >>> end of Averages | PASS | 2024-10-22 14:41:47 tester: auto test_tp006_report.py(89) |
4 | SRS-010 | verify report for Counter is generated correctly | >>> end of counters | >>> end of counters | PASS | 2024-10-22 14:41:47 tester: auto test_tp006_report.py(105) |
5 | SRS-010 | verify report for MinMax is generated correctly | >>> end of min/max | >>> end of min/max | PASS | 2024-10-22 14:41:47 tester: auto test_tp006_report.py(122) |
6 | SRS-010 | verify report for Stddev is generated correctly | >>> end of StdDev | >>> end of StdDev | PASS | 2024-10-22 14:41:47 tester: auto test_tp006_report.py(137) |
Req. | Desc. |
---|---|
SRS-010 | if report is called, a basic statistical report shall be generated using the given writeln function |
TP-007: do minimal report | Start date : 2024-10-22 14:41:47 MDT |
At: test_tp007_report_minimal.py(37) | Requirements : see below |
Software Version: N/A | Serial number: N/A |
Objectives: N/A | |
Preconditions: N/A | Deviations: N/A |
Step | Req. | Execution Instructions | Expected | Actual | Pass / Fail | Date |
---|---|---|---|---|---|---|
1 | N/A | verify initial values | None | None | PASS | 2024-10-22 14:41:47 tester: auto None |
2 | SRS-011 | verify empty report is generated correctly | 0 | 0 | PASS | 2024-10-22 14:41:47 tester: auto test_tp007_report_minimal.py(63) |
3 | SRS-011 | verify report for Average is generated correctly | 1.000000 avg0 | 1.000000 avg0 | PASS | 2024-10-22 14:41:47 tester: auto test_tp007_report_minimal.py(75) |
4 | SRS-011 | verify report for Counter is generated correctly | -1 cnt1 | -1 cnt1 | PASS | 2024-10-22 14:41:47 tester: auto test_tp007_report_minimal.py(90) |
5 | SRS-011 | verify report for MinMax is generated correctly | 5.100000 6.200000 mm1 | 5.100000 6.200000 mm1 | PASS | 2024-10-22 14:41:47 tester: auto test_tp007_report_minimal.py(107) |
6 | SRS-011 | verify report for Stddev is generated correctly | 0.707107 sd0 | 0.707107 sd0 | PASS | 2024-10-22 14:41:47 tester: auto test_tp007_report_minimal.py(120) |
Req. | Desc. |
---|---|
SRS-011 | if report_minimal is called, a minimal statistical report shall be generated using the given writeln function |
TP-008: do minimal report no headers | Start date : 2024-10-22 14:41:47 MDT |
At: test_tp008_report_minimal_nohdrs.py(37) | Requirements : see below |
Software Version: N/A | Serial number: N/A |
Objectives: N/A | |
Preconditions: N/A | Deviations: N/A |
Step | Req. | Execution Instructions | Expected | Actual | Pass / Fail | Date |
---|---|---|---|---|---|---|
1 | N/A | verify initial values | None | None | PASS | 2024-10-22 14:41:47 tester: auto None |
2 | SRS-012 | verify empty report is generated correctly | 0 | 0 | PASS | 2024-10-22 14:41:47 tester: auto test_tp008_report_minimal_nohdrs.py(46) |
3 | SRS-012 | verify report for Average is generated correctly | 1.000000 avg0 | 1.000000 avg0 | PASS | 2024-10-22 14:41:47 tester: auto test_tp008_report_minimal_nohdrs.py(94) |
4 | SRS-012 | verify report for Counter is generated correctly | -1 cnt1 | -1 cnt1 | PASS | 2024-10-22 14:41:47 tester: auto test_tp008_report_minimal_nohdrs.py(103) |
5 | SRS-012 | verify report for MinMax is generated correctly | 5.100000 6.200000 mm1 | 5.100000 6.200000 mm1 | PASS | 2024-10-22 14:41:47 tester: auto test_tp008_report_minimal_nohdrs.py(112) |
6 | SRS-012 | verify report for Stddev is generated correctly | 0.707107 sd0 | 0.707107 sd0 | PASS | 2024-10-22 14:41:47 tester: auto test_tp008_report_minimal_nohdrs.py(120) |
7 | SRS-012 | verify report with default writeln | 0 | 0 | PASS | 2024-10-22 14:41:47 tester: auto test_tp008_report_minimal_nohdrs.py(86) |
Req. | Desc. |
---|---|
SRS-012 | if report_minimal with no headers is called, a minimal statistical report shall be generated using the given writeln function |
TP-009: verify accuracy of stddev calculations | Start date : 2024-10-22 14:41:47 MDT |
At: test_tp009_stddev_accuracy.py(40) | Requirements : see below |
Software Version: N/A | Serial number: N/A |
Objectives: N/A | |
Preconditions: N/A | Deviations: N/A |
Step | Req. | Execution Instructions | Expected | Actual | Pass / Fail | Date |
---|---|---|---|---|---|---|
1 | N/A | verify initial values | None | None | PASS | 2024-10-22 14:41:47 tester: auto None |
2 | N/A | verify empty report is generated correctly | None | None | PASS | 2024-10-22 14:41:47 tester: auto None |
3 | SRS-084 | calculate the stddev 100 times and compare to python statistics module | 100 | 100 | PASS | 2024-10-22 14:41:47 tester: auto test_tp009_stddev_accuracy.py(57) |
Req. | Desc. |
---|---|
SRS-084 | The calculated stddev shall be accurate to +/- xx |
Req. Id | Protocol |
---|---|
SRS-001 (auto) |
Desc: If create_xx() is not called, the values shall be created as if create_xx() was called TP-001 test_tp001_basic.py(89)
TP-001 test_tp001_basic.py(90)
TP-001 test_tp001_basic.py(94)
TP-001 test_tp001_basic.py(95)
TP-001 test_tp001_basic.py(83)
TP-001 test_tp001_basic.py(84)
TP-001 test_tp001_basic.py(85)
TP-001 test_tp001_basic.py(76)
TP-001 test_tp001_basic.py(77)
TP-001 test_tp001_basic.py(78)
TP-001 test_tp001_basic.py(79)
|
SRS-002 (auto) |
Desc: If create_xx() is called and the stat already exists, the create_xx() shall be ignored TP-001 test_tp001_basic.py(99)
TP-001 test_tp001_basic.py(100)
TP-001 test_tp001_basic.py(102)
TP-001 test_tp001_basic.py(103)
TP-001 test_tp001_basic.py(105)
TP-001 test_tp001_basic.py(106)
TP-001 test_tp001_basic.py(107)
TP-001 test_tp001_basic.py(109)
TP-001 test_tp001_basic.py(110)
TP-001 test_tp001_basic.py(111)
TP-001 test_tp001_basic.py(112)
|
SRS-003 (auto) |
Desc: If init is called, all stats are reset TP-001 test_tp001_basic.py(117)
TP-001 test_tp001_basic.py(118)
TP-001 test_tp001_basic.py(120)
TP-001 test_tp001_basic.py(121)
TP-001 test_tp001_basic.py(123)
TP-001 test_tp001_basic.py(124)
TP-001 test_tp001_basic.py(125)
TP-001 test_tp001_basic.py(127)
TP-001 test_tp001_basic.py(128)
TP-001 test_tp001_basic.py(129)
TP-001 test_tp001_basic.py(130)
|
SRS-010 (auto) |
Desc: if report is called, a basic statistical report shall be generated using the given writeln function TP-006 test_tp006_report.py(46)
TP-006 test_tp006_report.py(47)
TP-006 test_tp006_report.py(48)
TP-006 test_tp006_report.py(81)
TP-006 test_tp006_report.py(82)
TP-006 test_tp006_report.py(83)
TP-006 test_tp006_report.py(84)
TP-006 test_tp006_report.py(85)
TP-006 test_tp006_report.py(86)
TP-006 test_tp006_report.py(88)
TP-006 test_tp006_report.py(89)
TP-006 test_tp006_report.py(96)
TP-006 test_tp006_report.py(97)
TP-006 test_tp006_report.py(98)
TP-006 test_tp006_report.py(99)
TP-006 test_tp006_report.py(100)
TP-006 test_tp006_report.py(101)
TP-006 test_tp006_report.py(103)
TP-006 test_tp006_report.py(104)
TP-006 test_tp006_report.py(105)
TP-006 test_tp006_report.py(112)
TP-006 test_tp006_report.py(113)
TP-006 test_tp006_report.py(114)
TP-006 test_tp006_report.py(115)
TP-006 test_tp006_report.py(116)
TP-006 test_tp006_report.py(117)
TP-006 test_tp006_report.py(120)
TP-006 test_tp006_report.py(121)
TP-006 test_tp006_report.py(122)
TP-006 test_tp006_report.py(129)
TP-006 test_tp006_report.py(130)
TP-006 test_tp006_report.py(131)
TP-006 test_tp006_report.py(132)
TP-006 test_tp006_report.py(133)
TP-006 test_tp006_report.py(134)
TP-006 test_tp006_report.py(136)
|
SRS-010 (auto) (cont'd) |
Desc: if report is called, a basic statistical report shall be generated using the given writeln function TP-006 test_tp006_report.py(137)
|
SRS-011 (auto) |
Desc: if report_minimal is called, a minimal statistical report shall be generated using the given writeln function TP-007 test_tp007_report_minimal.py(63)
TP-007 test_tp007_report_minimal.py(74)
TP-007 test_tp007_report_minimal.py(75)
TP-007 test_tp007_report_minimal.py(87)
TP-007 test_tp007_report_minimal.py(88)
TP-007 test_tp007_report_minimal.py(89)
TP-007 test_tp007_report_minimal.py(90)
TP-007 test_tp007_report_minimal.py(104)
TP-007 test_tp007_report_minimal.py(105)
TP-007 test_tp007_report_minimal.py(106)
TP-007 test_tp007_report_minimal.py(107)
TP-007 test_tp007_report_minimal.py(118)
TP-007 test_tp007_report_minimal.py(119)
TP-007 test_tp007_report_minimal.py(120)
|
SRS-012 (auto) |
Desc: if report_minimal with no headers is called, a minimal statistical report shall be generated using the given writeln function TP-008 test_tp008_report_minimal_nohdrs.py(46)
TP-008 test_tp008_report_minimal_nohdrs.py(93)
TP-008 test_tp008_report_minimal_nohdrs.py(94)
TP-008 test_tp008_report_minimal_nohdrs.py(101)
TP-008 test_tp008_report_minimal_nohdrs.py(102)
TP-008 test_tp008_report_minimal_nohdrs.py(103)
TP-008 test_tp008_report_minimal_nohdrs.py(110)
TP-008 test_tp008_report_minimal_nohdrs.py(111)
TP-008 test_tp008_report_minimal_nohdrs.py(112)
TP-008 test_tp008_report_minimal_nohdrs.py(119)
TP-008 test_tp008_report_minimal_nohdrs.py(120)
TP-008 test_tp008_report_minimal_nohdrs.py(86)
|
SRS-020 (auto) |
Desc: If no values were provided, the Average interface shall report NAN and num_elements == 0 TP-002 test_tp002_average.py(44)
TP-002 test_tp002_average.py(45)
TP-002 test_tp002_average.py(59)
TP-002 test_tp002_average.py(60)
|
SRS-021 (auto) |
Desc: If a value is provided, the Average interface shall be indicate one more than the previous num_elementss TP-002 test_tp002_average.py(49)
TP-002 test_tp002_average.py(54)
|
SRS-022 (auto) |
Desc: If a value is provided, the Average interface shall be indicate the average all values provided TP-002 test_tp002_average.py(50)
TP-002 test_tp002_average.py(55)
|
SRS-023 (auto) |
Desc: If init is called, the Average interface shall reset the num_elements to 0 and average NAN TP-002 test_tp002_average.py(59)
TP-002 test_tp002_average.py(60)
|
SRS-040 (auto) |
Desc: If no values were provided, the Counter interface shall report 0 TP-003 test_tp003_counter.py(43)
TP-003 test_tp003_counter.py(56)
|
SRS-041 (auto) |
Desc: If a counter is incremented, the Counter interface shall report 1 more than the previous value TP-003 test_tp003_counter.py(47)
|
SRS-042 (auto) |
Desc: If a counter is decremented, the Counter interface shall report 1 less than the previous value TP-003 test_tp003_counter.py(52)
|
SRS-043 (auto) |
Desc: If init is called, the Counter interface shall reset the value to 0 TP-003 test_tp003_counter.py(56)
|
SRS-044 (auto) |
Desc: if clear_counter is called, the Counter interface shall reset the value to 0 TP-003 test_tp003_counter.py(65)
TP-003 test_tp003_counter.py(66)
|
SRS-060 (auto) |
Desc: If no values were provided, the MinMax interface shall report None for values and 0 for num_elements TP-004 test_tp004_minmax.py(43)
TP-004 test_tp004_minmax.py(44)
TP-004 test_tp004_minmax.py(45)
TP-004 test_tp004_minmax.py(54)
TP-004 test_tp004_minmax.py(60)
TP-004 test_tp004_minmax.py(64)
TP-004 test_tp004_minmax.py(65)
TP-004 test_tp004_minmax.py(66)
|
SRS-061 (auto) |
Desc: If the added value is the least value, the MinMax interface shall report it as minimum TP-004 test_tp004_minmax.py(49)
TP-004 test_tp004_minmax.py(52)
TP-004 test_tp004_minmax.py(58)
|
SRS-062 (auto) |
Desc: If the added value is the greatest value, the MinMax interface shall report it as maximum TP-004 test_tp004_minmax.py(50)
TP-004 test_tp004_minmax.py(53)
TP-004 test_tp004_minmax.py(59)
|
SRS-063 (auto) |
Desc: If init is called, the MinMax interface shall reset the values to None and 0 for num_elements TP-004 test_tp004_minmax.py(64)
TP-004 test_tp004_minmax.py(65)
TP-004 test_tp004_minmax.py(66)
|
SRS-080 (auto) |
Desc: If no values were provided, the Stddev interface shall report NAN for stdev, variance and mean values and 0 for num_elements TP-005 test_tp005_stddev.py(45)
TP-005 test_tp005_stddev.py(46)
TP-005 test_tp005_stddev.py(47)
TP-005 test_tp005_stddev.py(48)
TP-005 test_tp005_stddev.py(79)
TP-005 test_tp005_stddev.py(80)
TP-005 test_tp005_stddev.py(81)
TP-005 test_tp005_stddev.py(82)
|
SRS-081 (auto) |
Desc: If one value is provided, the Stddev interface shall report NAN for stdev, variance, the value for mean, and 1 for num_elements TP-005 test_tp005_stddev.py(55)
TP-005 test_tp005_stddev.py(56)
TP-005 test_tp005_stddev.py(57)
TP-005 test_tp005_stddev.py(58)
|
SRS-082 (auto) |
Desc: If two or more valus are provided, the Stddev interface shall report correct valules for stdev, variance, mean, and the num_elements TP-005 test_tp005_stddev.py(64)
TP-005 test_tp005_stddev.py(65)
TP-005 test_tp005_stddev.py(66)
TP-005 test_tp005_stddev.py(67)
TP-005 test_tp005_stddev.py(72)
TP-005 test_tp005_stddev.py(73)
TP-005 test_tp005_stddev.py(74)
TP-005 test_tp005_stddev.py(75)
|
SRS-083 (auto) |
Desc: If init is called, the Stddev interface shall reset the values to NAN for stdev, variance and mean values and 0 for num_elements TP-005 test_tp005_stddev.py(79)
TP-005 test_tp005_stddev.py(80)
TP-005 test_tp005_stddev.py(81)
TP-005 test_tp005_stddev.py(82)
|
SRS-084 (auto) |
Desc: The calculated stddev shall be accurate to +/- xx TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
|
SRS-084 (auto) (cont'd) |
Desc: The calculated stddev shall be accurate to +/- xx TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
|
SRS-084 (auto) (cont'd) |
Desc: The calculated stddev shall be accurate to +/- xx TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
|
SRS-084 (auto) (cont'd) |
Desc: The calculated stddev shall be accurate to +/- xx TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
|
SRS-084 (auto) (cont'd) |
Desc: The calculated stddev shall be accurate to +/- xx TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
|
SRS-084 (auto) (cont'd) |
Desc: The calculated stddev shall be accurate to +/- xx TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(57)
|