(t *testing.T)
| 50 | } |
| 51 | |
| 52 | func TestEnableCaching(t *testing.T) { |
| 53 | err := EnableCaching(false) |
| 54 | checkFatal(t, err) |
| 55 | |
| 56 | err = EnableCaching(true) |
| 57 | checkFatal(t, err) |
| 58 | } |
| 59 | |
| 60 | func TestEnableStrictHashVerification(t *testing.T) { |
| 61 | err := EnableStrictHashVerification(false) |
nothing calls this directly
no test coverage detected
searching dependent graphs…