tests: Implement remaining GetOptions fields

This commit is contained in:
Marek Siarkowicz
2022-02-24 13:13:18 +01:00
parent fd5cd9fd98
commit f7ee30cc41
6 changed files with 85 additions and 27 deletions

View File

@ -34,5 +34,5 @@ type Cluster interface {
type Client interface {
Put(key, value string) error
Get(key string, opts ...testutils.GetOption) (*clientv3.GetResponse, error)
Get(key string, opts testutils.GetOptions) (*clientv3.GetResponse, error)
}