(t *testing.T)
| 2955 | } |
| 2956 | |
| 2957 | func TestEventuallyFalse(t *testing.T) { |
| 2958 | mockT := new(testing.T) |
| 2959 | |
| 2960 | condition := func() bool { |
| 2961 | return false |
| 2962 | } |
| 2963 | |
| 2964 | False(t, Eventually(mockT, condition, 100*time.Millisecond, 20*time.Millisecond)) |
| 2965 | } |
| 2966 | |
| 2967 | func TestEventuallyTrue(t *testing.T) { |
| 2968 | state := 0 |
nothing calls this directly
no test coverage detected