Test helper for SYS-REQ-001 and SYS-REQ-008.
(abytes []byte, bstr string)
| 19 | |
| 20 | // Test helper for SYS-REQ-001 and SYS-REQ-008. |
| 21 | func bytesEqualStrSafe(abytes []byte, bstr string) bool { |
| 22 | return bstr == string(abytes) |
| 23 | } |
| 24 | |
| 25 | // Test helper for SYS-REQ-001 and SYS-REQ-008. |
| 26 | func bytesEqualStrUnsafeSlower(abytes *[]byte, bstr string) bool { |
no outgoing calls
no test coverage detected