Name:Dictionary Should Contain Sub DictionarySource:Collections <test library>Arguments:[ dict1 | dict2 | msg=None | values=True ]Fails unless all items in `dict2` are found from `dict1`. See `Lists Should Be Equal` for an explanation of `msg`. The…
Name:Dictionary Should Not Contain ValueSource:Collections <test library>Arguments:[ dictionary | value | msg=None ]Fails if `value` is found from `dictionary`. See `List Should Contain Value` for an explanation of `msg`. The given dictionary is nev…
Name:Dictionary Should Not Contain KeySource:Collections <test library>Arguments:[ dictionary | key | msg=None ]Fails if `key` is found from `dictionary`. See `List Should Contain Value` for an explanation of `msg`. The given dictionary is never alt…
Name:Dictionary Should Contain ValueSource:Collections <test library>Arguments:[ dictionary | value | msg=None ]Fails if `value` is not found from `dictionary`. See `List Should Contain Value` for an explanation of `msg`. The given dictionary is nev…
Name:Dictionary Should Contain KeySource:Collections <test library>Arguments:[ dictionary | key | msg=None ]Fails if `key` is not found from `dictionary`. See `List Should Contain Value` for an explanation of `msg`. The given dictionary is never alt…
Name:Get Dictionary ItemsSource:Collections <test library>Arguments:[ dictionary ]Returns items of the given `dictionary`. Items are returned sorted by keys. The given `dictionary` is not altered by this keyword.…
Name:Log DictionarySource:Collections <test library>Arguments:[ dictionary | level=INFO ]Logs the size and contents of the `dictionary` using given `level`. Valid levels are TRACE, DEBUG, INFO (default), and WARN. If you only want to log the size, u…
Name:Keep In DictionarySource:Collections <test library>Arguments:[ dictionary | *keys ]Keeps the given `keys` in the `dictionary` and removes all other. If the given `key` cannot be found from the `dictionary`, it is ignored.…
Name: Copy DictionarySource:Collections <test library>Arguments:[ dictionary ]Returns a copy of the given dictionary. The given dictionary is never altered by this keyword.…
Name:Set To DictionarySource:Collections <test library>Arguments:[ dictionary | *key_value_pairs ]Adds the given `key_value_pairs` to the `dictionary`. 增加的键值对都是放在字典的最前面.…