Test helper for SYS-REQ-006.
(data []byte)
| 13 | |
| 14 | // Test helper for SYS-REQ-006. |
| 15 | func toArray(data []byte) (result [][]byte) { |
| 16 | ArrayEach(data, func(value []byte, dataType ValueType, offset int, err error) { |
| 17 | result = append(result, value) |
| 18 | }) |
| 19 | |
| 20 | return |
| 21 | } |
| 22 | |
| 23 | // Test helper for SYS-REQ-006 and SYS-REQ-008. |
| 24 | func toStringArray(data []byte) (result []string) { |
nothing calls this directly
no test coverage detected