(t *testing.T)
| 36 | } |
| 37 | |
| 38 | func TestFrequencyPPBInvalidClock(t *testing.T) { |
| 39 | _, _, err := FrequencyPPB(-1) |
| 40 | require.Error(t, err) |
| 41 | } |
| 42 | |
| 43 | func TestMaxFreqPPBInvalidClock(t *testing.T) { |
| 44 | _, _, err := MaxFreqPPB(-1) |
nothing calls this directly
no test coverage detected
searching dependent graphs…