(a, b []byte)
| 197 | } |
| 198 | |
| 199 | func stringEqual(a, b []byte) bool { |
| 200 | if len(a) != len(b) { |
| 201 | return false |
| 202 | } |
| 203 | for i := range a { |
| 204 | if a[i] != b[i] { |
| 205 | return false |
| 206 | } |
| 207 | } |
| 208 | return true |
| 209 | } |
| 210 | |
| 211 | func TestHintFileWriterReader(t *testing.T) { |
| 212 | tmpDir, err := os.MkdirTemp("", "hintfile-test") |
no outgoing calls
no test coverage detected