kubernetes/pkg/kubelet/container/testing/fake_cache.go

type fakeCache

func NewFakeCache(runtime container.Runtime) container.Cache {}

func (c *fakeCache) Get(id types.UID) (*container.PodStatus, error) {}

func (c *fakeCache) GetNewerThan(id types.UID, minTime time.Time) (*container.PodStatus, error) {}

func (c *fakeCache) Set(id types.UID, status *container.PodStatus, err error, timestamp time.Time) (updated bool) {}

func (c *fakeCache) Delete(id types.UID) {}

func (c *fakeCache) UpdateTime(_ time.Time) {}