(t *testing.T)
| 97 | } |
| 98 | |
| 99 | func TestDelay(t *testing.T) { |
| 100 | var print = func(s string) { |
| 101 | t.Log(s) |
| 102 | } |
| 103 | Delay(2*time.Second, print, "test delay") |
| 104 | } |
| 105 | |
| 106 | func TestDebounced(t *testing.T) { |
| 107 | assert := internal.NewAssert(t, "TestDebounced") |
nothing calls this directly
no test coverage detected
searching dependent graphs…