(t *testing.T, stdout string)
| 141 | } |
| 142 | |
| 143 | func unmarshalSnapVerify(t *testing.T, stdout string) *snapshotfs.VerifierResult { |
| 144 | t.Helper() |
| 145 | |
| 146 | r := &snapshotfs.VerifierResult{} |
| 147 | require.NoError(t, json.Unmarshal([]byte(stdout), r)) |
| 148 | |
| 149 | return r |
| 150 | } |
no test coverage detected