Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Add missing assertion in unit tests
  • Loading branch information
Sergio0694 committed Jul 14, 2021
commit 21ab729485561a6c292a90ebc5a1c28182d3f64a
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,7 @@ public void GetValueRefOrAddDefaultValueType()
Assert.False(exists);
Assert.Equal(3, dict.Count);
Assert.False(Unsafe.IsNullRef(ref entry3Ref));
Assert.True(EqualityComparer<Struct>.Default.Equals(entry3Ref, default));

entry3Ref.Property = 42;
entry3Ref.Value = 12345;
Expand Down