diff --git a/testing/actions.go b/testing/actions.go index 12a2ecf9..8633a81d 100644 --- a/testing/actions.go +++ b/testing/actions.go @@ -319,6 +319,17 @@ type DeleteAction interface { GetName() string } +type DeleteCollectionAction interface { + Action + GetListRestrictions() ListRestrictions +} + +type PatchAction interface { + Action + GetName() string + GetPatch() []byte +} + type WatchAction interface { Action GetWatchRestrictions() WatchRestrictions