(t *testing.T)
| 11 | ) |
| 12 | |
| 13 | func TestRCNil(t *testing.T) { |
| 14 | _, err := NewReplicationController(nil, kube.ObjectMeta{}, "nilRC") |
| 15 | assert.Error(t, err, "RC cannot be created from ni") |
| 16 | } |
| 17 | |
| 18 | func TestRCInvalid(t *testing.T) { |
| 19 | kubeRC := new(kube.ReplicationController) |
nothing calls this directly
no test coverage detected