Alternative implementation using unsafe, but that is slower than the current implementation Verifies: SYS-REQ-001 MCDC SYS-REQ-001: N/A
(b *testing.B)
| 74 | // Verifies: SYS-REQ-001 |
| 75 | // MCDC SYS-REQ-001: N/A |
| 76 | func BenchmarkBytesEqualStrUnsafeSlower(b *testing.B) { |
| 77 | for i := 0; i < b.N; i++ { |
| 78 | bytesEqualStrUnsafeSlower(&benchmarkBytes, benchmarkString) |
| 79 | } |
| 80 | } |
nothing calls this directly
no test coverage detected