(t *testing.T)
| 214 | } |
| 215 | |
| 216 | func TestIsUnschedulableFailure(t *testing.T) { |
| 217 | tNode := getNode(t, getDrainHelper(fake.NewSimpleClientset())) |
| 218 | value, err := tNode.IsUnschedulable(nodeName) |
| 219 | h.Assert(t, err != nil, "Failed to return error on IsUnschedulable failing to fetch node") |
| 220 | h.Equals(t, true, value) |
| 221 | } |
| 222 | |
| 223 | func TestMarkWithEventIDSuccess(t *testing.T) { |
| 224 | client := fake.NewSimpleClientset() |
nothing calls this directly
no test coverage detected