public void LoadLegacy_should_return_empty_collection_if_settings_value_null() { var repositories = _repositoryStorage.Load(); repositories.Should().BeEmpty(); }
public void Load_should_throw_if_key_null(string key) { ((Action)(() => _repositoryStorage.Load(key))).Should().Throw <ArgumentException>(); }