Verification Test Results for python-on-the-fly-stats



Automated Test Summary

Test Run Details

Summary

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%


Test Run Details

Test Protocols with results

TP-001: basic calls Start date : 2024-09-24 19:50:35 MDT
At: test_tp001_basic.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-09-24 19:50:35
tester: auto
None
2 SRS-001 verify Average values are set correctly 1 1.0 PASS 2024-09-24 19:50:35
tester: auto
test_tp001_basic.py(89)
3 SRS-001 verify Counter values are set correctly -1 -1 PASS 2024-09-24 19:50:35
tester: auto
test_tp001_basic.py(94)
4 SRS-001 verify MinMax values are set correctly 4 4 PASS 2024-09-24 19:50:35
tester: auto
test_tp001_basic.py(84)
5 SRS-001 verify Stddev values are set correctly 0.7071067811865476 0.7071067811865476 PASS 2024-09-24 19:50:35
tester: auto
test_tp001_basic.py(78)
6 SRS-002 verify calling create_xx() is ignored 0.7071067811865476 0.7071067811865476 PASS 2024-09-24 19:50:35
tester: auto
test_tp001_basic.py(111)
7 SRS-003 verify init() resets all values True True PASS 2024-09-24 19:50:35
tester: auto
test_tp001_basic.py(129)

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-09-24 19:50:35 MDT
At: test_tp002_average.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-09-24 19:50:35
tester: auto
None
2 SRS-020 verify initial values are set correctly True True PASS 2024-09-24 19:50:35
tester: auto
test_tp002_average.py(44)
3 SRS-021
SRS-022
verify a single value is reported correctly 10.0 10.0 PASS 2024-09-24 19:50:35
tester: auto
test_tp002_average.py(49)
4 SRS-021
SRS-022
verify a multiple values are reported correctly 15.0 15.0 PASS 2024-09-24 19:50:35
tester: auto
test_tp002_average.py(54)
5 SRS-020
SRS-023
verify after init(), initial values are reported correctly True True PASS 2024-09-24 19:50:35
tester: auto
test_tp002_average.py(59)

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-09-24 19:50:35 MDT
At: test_tp003_counter.py(35) 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-09-24 19:50:35
tester: auto
None
2 SRS-040 verify initial values are set correctly 0 0 PASS 2024-09-24 19:50:35
tester: auto
test_tp003_counter.py(42)
3 SRS-041 verify an increment is reported correctly 1 1 PASS 2024-09-24 19:50:35
tester: auto
test_tp003_counter.py(46)
4 SRS-042 verify an decrement is reported correctly -1 -1 PASS 2024-09-24 19:50:35
tester: auto
test_tp003_counter.py(51)
5 SRS-040
SRS-043
verify after init(), initial values are reported correctly 0 0 PASS 2024-09-24 19:50:35
tester: auto
test_tp003_counter.py(55)
6 SRS-044 verify after clear_counter(), clears only the one counter 0 0 PASS 2024-09-24 19:50:35
tester: auto
test_tp003_counter.py(65)

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-09-24 19:50:35 MDT
At: test_tp004_minmax.py(35) 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-09-24 19:50:35
tester: auto
None
2 SRS-060 verify initial values are set correctly 0 0 PASS 2024-09-24 19:50:35
tester: auto
test_tp004_minmax.py(44)
3 SRS-060
SRS-061
SRS-062
verify a minimum value is reported correctly 2 2 PASS 2024-09-24 19:50:35
tester: auto
test_tp004_minmax.py(53)
4 SRS-060
SRS-061
SRS-062
verify a maximum is reported correctly 3 3 PASS 2024-09-24 19:50:35
tester: auto
test_tp004_minmax.py(59)
5 SRS-060
SRS-063
verify after init(), initial values are reported correctly 0 0 PASS 2024-09-24 19:50:35
tester: auto
test_tp004_minmax.py(65)

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-09-24 19:50:35 MDT
At: test_tp005_stddev.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-09-24 19:50:35
tester: auto
None
2 SRS-080 verify initial values are set correctly 0 0 PASS 2024-09-24 19:50:35
tester: auto
test_tp005_stddev.py(47)
3 SRS-081 verify a single updated value reports correctly 1 1 PASS 2024-09-24 19:50:35
tester: auto
test_tp005_stddev.py(57)
4 SRS-082 verify two or more updated values reports correctly 3 3 PASS 2024-09-24 19:50:35
tester: auto
test_tp005_stddev.py(74)
5 SRS-080
SRS-083
verify after init(), initial values are reported correctly 0 0 PASS 2024-09-24 19:50:35
tester: auto
test_tp005_stddev.py(81)

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-09-24 19:50:35 MDT
At: test_tp006_report.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-09-24 19:50:35
tester: auto
None
2 SRS-010 verify empty report is generated correctly ---- Stats: ---- Stats: PASS 2024-09-24 19:50:35
tester: auto
test_tp006_report.py(47)
3 SRS-010 verify report for Average is generated correctly >>> end of Averages >>> end of Averages PASS 2024-09-24 19:50:35
tester: auto
test_tp006_report.py(88)
4 SRS-010 verify report for Counter is generated correctly >>> end of counters >>> end of counters PASS 2024-09-24 19:50:35
tester: auto
test_tp006_report.py(104)
5 SRS-010 verify report for MinMax is generated correctly >>> end of min/max >>> end of min/max PASS 2024-09-24 19:50:35
tester: auto
test_tp006_report.py(121)
6 SRS-010 verify report for Stddev is generated correctly >>> end of StdDev >>> end of StdDev PASS 2024-09-24 19:50:35
tester: auto
test_tp006_report.py(136)

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-09-24 19:50:35 MDT
At: test_tp007_report_minimal.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-09-24 19:50:35
tester: auto
None
2 SRS-011 verify empty report is generated correctly 0 0 PASS 2024-09-24 19:50:35
tester: auto
test_tp007_report_minimal.py(62)
3 SRS-011 verify report for Average is generated correctly 1.000000 avg0 1.000000 avg0 PASS 2024-09-24 19:50:35
tester: auto
test_tp007_report_minimal.py(74)
4 SRS-011 verify report for Counter is generated correctly -1 cnt1 -1 cnt1 PASS 2024-09-24 19:50:35
tester: auto
test_tp007_report_minimal.py(89)
5 SRS-011 verify report for MinMax is generated correctly 5.100000 6.200000 mm1 5.100000 6.200000 mm1 PASS 2024-09-24 19:50:35
tester: auto
test_tp007_report_minimal.py(106)
6 SRS-011 verify report for Stddev is generated correctly 0.707107 sd0 0.707107 sd0 PASS 2024-09-24 19:50:35
tester: auto
test_tp007_report_minimal.py(119)

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-09-24 19:50:35 MDT
At: test_tp008_report_minimal_nohdrs.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-09-24 19:50:35
tester: auto
None
2 SRS-012 verify empty report is generated correctly 0 0 PASS 2024-09-24 19:50:35
tester: auto
test_tp008_report_minimal_nohdrs.py(45)
3 SRS-012 verify report for Average is generated correctly 1.000000 avg0 1.000000 avg0 PASS 2024-09-24 19:50:35
tester: auto
test_tp008_report_minimal_nohdrs.py(93)
4 SRS-012 verify report for Counter is generated correctly -1 cnt1 -1 cnt1 PASS 2024-09-24 19:50:35
tester: auto
test_tp008_report_minimal_nohdrs.py(102)
5 SRS-012 verify report for MinMax is generated correctly 5.100000 6.200000 mm1 5.100000 6.200000 mm1 PASS 2024-09-24 19:50:35
tester: auto
test_tp008_report_minimal_nohdrs.py(111)
6 SRS-012 verify report for Stddev is generated correctly 0.707107 sd0 0.707107 sd0 PASS 2024-09-24 19:50:35
tester: auto
test_tp008_report_minimal_nohdrs.py(119)
7 SRS-012 verify report with default writeln 0 0 PASS 2024-09-24 19:50:35
tester: auto
test_tp008_report_minimal_nohdrs.py(85)

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-09-24 19:50:35 MDT
At: test_tp009_stddev_accuracy.py(39) 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-09-24 19:50:35
tester: auto
None
2 N/A verify empty report is generated correctly None None PASS 2024-09-24 19:50:35
tester: auto
None
3 SRS-084 calculate the stddev 100 times and compare to python statistics module 100 100 PASS 2024-09-24 19:50:35
tester: auto
test_tp009_stddev_accuracy.py(56)

Req. Desc.
SRS-084 The calculated stddev shall be accurate to +/- xx




Trace Matrix

Test Run Details

Trace Matrix

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(88)
TP-001 test_tp001_basic.py(89)
TP-001 test_tp001_basic.py(93)
TP-001 test_tp001_basic.py(94)
TP-001 test_tp001_basic.py(82)
TP-001 test_tp001_basic.py(83)
TP-001 test_tp001_basic.py(84)
TP-001 test_tp001_basic.py(75)
TP-001 test_tp001_basic.py(76)
TP-001 test_tp001_basic.py(77)
TP-001 test_tp001_basic.py(78)
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(98)
TP-001 test_tp001_basic.py(99)
TP-001 test_tp001_basic.py(101)
TP-001 test_tp001_basic.py(102)
TP-001 test_tp001_basic.py(104)
TP-001 test_tp001_basic.py(105)
TP-001 test_tp001_basic.py(106)
TP-001 test_tp001_basic.py(108)
TP-001 test_tp001_basic.py(109)
TP-001 test_tp001_basic.py(110)
TP-001 test_tp001_basic.py(111)
SRS-003
(auto)
Desc: If init is called, all stats are reset

TP-001 test_tp001_basic.py(116)
TP-001 test_tp001_basic.py(117)
TP-001 test_tp001_basic.py(119)
TP-001 test_tp001_basic.py(120)
TP-001 test_tp001_basic.py(122)
TP-001 test_tp001_basic.py(123)
TP-001 test_tp001_basic.py(124)
TP-001 test_tp001_basic.py(126)
TP-001 test_tp001_basic.py(127)
TP-001 test_tp001_basic.py(128)
TP-001 test_tp001_basic.py(129)
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(45)
TP-006 test_tp006_report.py(46)
TP-006 test_tp006_report.py(47)
TP-006 test_tp006_report.py(80)
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(87)
TP-006 test_tp006_report.py(88)
TP-006 test_tp006_report.py(95)
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(102)
TP-006 test_tp006_report.py(103)
TP-006 test_tp006_report.py(104)
TP-006 test_tp006_report.py(111)
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(119)
TP-006 test_tp006_report.py(120)
TP-006 test_tp006_report.py(121)
TP-006 test_tp006_report.py(128)
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(135)
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(136)
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(62)
TP-007 test_tp007_report_minimal.py(73)
TP-007 test_tp007_report_minimal.py(74)
TP-007 test_tp007_report_minimal.py(86)
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(103)
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(117)
TP-007 test_tp007_report_minimal.py(118)
TP-007 test_tp007_report_minimal.py(119)
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(45)
TP-008 test_tp008_report_minimal_nohdrs.py(92)
TP-008 test_tp008_report_minimal_nohdrs.py(93)
TP-008 test_tp008_report_minimal_nohdrs.py(100)
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(109)
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(118)
TP-008 test_tp008_report_minimal_nohdrs.py(119)
TP-008 test_tp008_report_minimal_nohdrs.py(85)
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(43)
TP-002 test_tp002_average.py(44)
TP-002 test_tp002_average.py(58)
TP-002 test_tp002_average.py(59)
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(48)
TP-002 test_tp002_average.py(53)
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(49)
TP-002 test_tp002_average.py(54)
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(58)
TP-002 test_tp002_average.py(59)
SRS-040
(auto)
Desc: If no values were provided, the Counter interface shall report 0

TP-003 test_tp003_counter.py(42)
TP-003 test_tp003_counter.py(55)
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(46)
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(51)
SRS-043
(auto)
Desc: If init is called, the Counter interface shall reset the value to 0

TP-003 test_tp003_counter.py(55)
SRS-044
(auto)
Desc: if clear_counter is called, the Counter interface shall reset the value to 0

TP-003 test_tp003_counter.py(64)
TP-003 test_tp003_counter.py(65)
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(42)
TP-004 test_tp004_minmax.py(43)
TP-004 test_tp004_minmax.py(44)
TP-004 test_tp004_minmax.py(53)
TP-004 test_tp004_minmax.py(59)
TP-004 test_tp004_minmax.py(63)
TP-004 test_tp004_minmax.py(64)
TP-004 test_tp004_minmax.py(65)
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(48)
TP-004 test_tp004_minmax.py(51)
TP-004 test_tp004_minmax.py(57)
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(49)
TP-004 test_tp004_minmax.py(52)
TP-004 test_tp004_minmax.py(58)
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(63)
TP-004 test_tp004_minmax.py(64)
TP-004 test_tp004_minmax.py(65)
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(44)
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(78)
TP-005 test_tp005_stddev.py(79)
TP-005 test_tp005_stddev.py(80)
TP-005 test_tp005_stddev.py(81)
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(54)
TP-005 test_tp005_stddev.py(55)
TP-005 test_tp005_stddev.py(56)
TP-005 test_tp005_stddev.py(57)
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(63)
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(71)
TP-005 test_tp005_stddev.py(72)
TP-005 test_tp005_stddev.py(73)
TP-005 test_tp005_stddev.py(74)
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(78)
TP-005 test_tp005_stddev.py(79)
TP-005 test_tp005_stddev.py(80)
TP-005 test_tp005_stddev.py(81)
SRS-084
(auto)
Desc: The calculated stddev shall be accurate to +/- xx

TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
SRS-084
(auto) (cont'd)
Desc: The calculated stddev shall be accurate to +/- xx

TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
SRS-084
(auto) (cont'd)
Desc: The calculated stddev shall be accurate to +/- xx

TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
SRS-084
(auto) (cont'd)
Desc: The calculated stddev shall be accurate to +/- xx

TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
SRS-084
(auto) (cont'd)
Desc: The calculated stddev shall be accurate to +/- xx

TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
SRS-084
(auto) (cont'd)
Desc: The calculated stddev shall be accurate to +/- xx

TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)
TP-009 test_tp009_stddev_accuracy.py(55)
TP-009 test_tp009_stddev_accuracy.py(56)