Skip to content

Commit

Permalink
Wpf.ScatterSeries: add test comparing default values
Browse files Browse the repository at this point in the history
  • Loading branch information
objorke committed Jun 14, 2014
1 parent d05ed70 commit d48479f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Source/OxyPlot.Wpf.Tests/Series/SeriesTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,14 @@ public void ScatterSeries()
OxyAssert.PropertiesAreEqual(s1, s2);
}

[Test]
public void ScatterErrorSeries()
{
var s1 = new OxyPlot.Series.ScatterErrorSeries();
var s2 = new ScatterErrorSeries();
OxyAssert.PropertiesAreEqual(s1, s2);
}

/*
[Test]
public void CandleStickSeries()
Expand Down

0 comments on commit d48479f

Please sign in to comment.