private void AssertNotEqual(SourceMapping left, SourceMapping right) { Assert.False(left == right); Assert.False(left.Equals(right)); Assert.False(right.Equals(left)); Assert.False(Equals(left, right)); }
public void GeneratedCodeMappingsAreEqualIfDataIsEqual() { // Arrange var left = new SourceMapping( new SourceSpan(new SourceLocation(1, 2, 3), 4), new SourceSpan(new SourceLocation(5, 6, 7), 8)); var right = new SourceMapping( new SourceSpan(new SourceLocation(1, 2, 3), 4), new SourceSpan(new SourceLocation(5, 6, 7), 8)); // Assert Assert.True(left.Equals(right)); Assert.True(right.Equals(left)); Assert.True(Equals(left, right)); }