(t *testing.T)
| 2751 | } |
| 2752 | |
| 2753 | func TestEventuallyFalse(t *testing.T) { |
| 2754 | mockT := new(testing.T) |
| 2755 | |
| 2756 | condition := func() bool { |
| 2757 | return false |
| 2758 | } |
| 2759 | |
| 2760 | False(t, Eventually(mockT, condition, 100*time.Millisecond, 20*time.Millisecond)) |
| 2761 | } |
| 2762 | |
| 2763 | func TestEventuallyTrue(t *testing.T) { |
| 2764 | state := 0 |
nothing calls this directly
no test coverage detected
searching dependent graphs…