Fix ObjectDisposedException crash when loading PRs #507
+51
−10
src/TrackingCollectionTests/TrackingCollectionTests.cs
| + | ||
| + Assert.AreEqual(8, col.Count); | ||
| + CollectionAssert.AreEqual(col, new List<Thing> { | ||
| + GetThing(1, 1), | ||
| + GetThing(3, 3), | ||
| + GetThing(4, 4), | ||
| + GetThing(6, 6), | ||
| + GetThing(7, 7), | ||
| + GetThing(8, 8), | ||
| + GetThing(9, 9), | ||
| + GetThing(10, 10), | ||
| + }); | ||
| + | ||
| + col.Filter = null; | ||
| + | ||
| + expectedCount = 15; |
|
This unit test is getting rather long - might it be best to split this test out into a separate test method?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
|
5 checks passed
Details
GitHub CLA
@shana has accepted the GitHub Contributor License Agreement.
Details
VisualStudio
Build #3884012 succeeded in 82s
Details
continuous-integration/appveyor/branch
AppVeyor build succeeded
Details
continuous-integration/appveyor/pr
AppVeyor build succeeded
Details
jenkins/build_log
Jenkins Build Log
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Fixes #505