Implemented interface member:
21 references to Add
Microsoft.AspNetCore.Shared.Tests (21)
AdaptiveCapacityDictionaryTests.cs (20)
131
dict.
Add
("age", 30);
355
dict.
Add
("key", "value");
369
dict.
Add
("", "foo");
385
dict.
Add
("key", "value");
407
ExceptionAssert.ThrowsArgument(() => dict.
Add
("key", "value2"), "key", message);
428
ExceptionAssert.ThrowsArgument(() => dict.
Add
("kEy", "value2"), "key", message);
1173
dict.
Add
("key", "value");
1180
dict.
Add
("key2", "value2");
1181
dict.
Add
("key3", "value3");
1182
dict.
Add
("key4", "value4");
1183
dict.
Add
("key5", "value5");
1184
dict.
Add
("key6", "value2");
1185
dict.
Add
("key7", "value3");
1186
dict.
Add
("key8", "value4");
1187
dict.
Add
("key9", "value5");
1188
dict.
Add
("key10", "value2");
1189
dict.
Add
("key11", "value3");
1261
dict.
Add
("key", "value");
1262
dict.
Add
("key2", "value2");
1263
dict.
Add
("key3", "value3");
src\Shared\Dictionary\AdaptiveCapacityDictionary.cs (1)
207
Add
(item.Key, item.Value);