Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2015-09-28 20:53:03 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2015-09-28 21:02:58 +0300
commitc26ece11d2c1df042dc533ae86eab9d6a8e61145 (patch)
treec494c7a28800ecb8187f5b652e4bde7d980bc1fb /src/System.Collections.NonGeneric/tests/ArrayList
parent35f2a11d38e3309c1da59d867b46402b08a15c75 (diff)
System.Collections.NonGeneric: populate collections in debugger attribute tests
This follows the lead of ImmutableCollections tests and ensures the previously uncovered KeyValuePairs internal class is covered. Coverage of this package slightly increases from 94.3% to 94.6%.
Diffstat (limited to 'src/System.Collections.NonGeneric/tests/ArrayList')
-rw-r--r--src/System.Collections.NonGeneric/tests/ArrayList/CtorTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/System.Collections.NonGeneric/tests/ArrayList/CtorTests.cs b/src/System.Collections.NonGeneric/tests/ArrayList/CtorTests.cs
index 158a329508..e9b58934c8 100644
--- a/src/System.Collections.NonGeneric/tests/ArrayList/CtorTests.cs
+++ b/src/System.Collections.NonGeneric/tests/ArrayList/CtorTests.cs
@@ -89,7 +89,7 @@ namespace System.Collections.Tests
public void DebuggerAttributeTests()
{
DebuggerAttributes.ValidateDebuggerDisplayReferences(new ArrayList());
- DebuggerAttributes.ValidateDebuggerTypeProxyProperties(new ArrayList());
+ DebuggerAttributes.ValidateDebuggerTypeProxyProperties(new ArrayList() { "a", 1, "b", 2 });
}
}
}