Exemplo n.º 1
0
            public void DateTimeAxis()
            {
                var s1 = new Axes.DateTimeAxis();
                var s2 = new DateTimeAxis();

                OxyAssert.PropertiesAreEqual(s1, s2);
            }
Exemplo n.º 2
0
            public void PolygonAnnotation()
            {
                var s1 = new PolygonAnnotation();
                var s2 = new Annotations.PolygonAnnotation();

                OxyAssert.PropertiesAreEqual(s2, s1);
            }
Exemplo n.º 3
0
            public void RectangleAnnotation()
            {
                var s1 = new RectangleAnnotation();
                var s2 = new Annotations.RectangleAnnotation();

                OxyAssert.PropertiesAreEqual(s2, s1);
            }
Exemplo n.º 4
0
            public void TimeSpanAxis()
            {
                var s1 = new Axes.TimeSpanAxis();
                var s2 = new TimeSpanAxis();

                OxyAssert.PropertiesAreEqual(s1, s2);
            }
Exemplo n.º 5
0
            public void ArrowAnnotation()
            {
                var s1 = new ArrowAnnotation();
                var s2 = new Annotations.ArrowAnnotation();

                OxyAssert.PropertiesAreEqual(s2, s1);
            }
Exemplo n.º 6
0
            public void EllipseAnnotation()
            {
                var s1 = new EllipseAnnotation();
                var s2 = new Annotations.EllipseAnnotation();

                OxyAssert.PropertiesAreEqual(s2, s1);
            }
Exemplo n.º 7
0
            public void LineAnnotation()
            {
                var s1 = new LineAnnotation();
                var s2 = new Annotations.LineAnnotation();

                OxyAssert.PropertiesAreEqual(s2, s1);
            }
Exemplo n.º 8
0
            public void PlotModelVsPlot()
            {
                var model = new PlotModel();
                var view  = new PlotView();

                OxyAssert.PropertiesAreEqual(model, view);
            }
Exemplo n.º 9
0
            public void TextAnnotation()
            {
                var s1 = new TextAnnotation();
                var s2 = new Annotations.TextAnnotation();

                OxyAssert.PropertiesAreEqual(s2, s1);
            }
Exemplo n.º 10
0
            public void AngleAxis()
            {
                var s1 = new Axes.AngleAxis();
                var s2 = new AngleAxis();

                OxyAssert.PropertiesAreEqual(s1, s2);
            }
Exemplo n.º 11
0
            public void MagnitudeAxis()
            {
                var s1 = new Axes.MagnitudeAxis();
                var s2 = new MagnitudeAxis();

                OxyAssert.PropertiesAreEqual(s1, s2);
            }
Exemplo n.º 12
0
            public void LogarithmicAxis()
            {
                var s1 = new Axes.LogarithmicAxis();
                var s2 = new LogarithmicAxis();

                OxyAssert.PropertiesAreEqual(s1, s2);
            }
Exemplo n.º 13
0
            public void CategoryAxis()
            {
                var s1 = new Axes.CategoryAxis();
                var s2 = new CategoryAxis();

                OxyAssert.PropertiesAreEqual(s1, s2);
            }
Exemplo n.º 14
0
            public void FunctionAnnotation()
            {
                var s1 = new FunctionAnnotation();
                var s2 = new Annotations.FunctionAnnotation();

                OxyAssert.PropertiesAreEqual(s2, s1);
            }
Exemplo n.º 15
0
            public void LinearAxis()
            {
                var s1 = new Axes.LinearAxis();
                var s2 = new LinearAxis();

                OxyAssert.PropertiesAreEqual(s1, s2);
            }
Exemplo n.º 16
0
            public void ScatterErrorSeries()
            {
                var s1 = new OxyPlot.Series.ScatterErrorSeries();
                var s2 = new ScatterErrorSeries();

                OxyAssert.PropertiesAreEqual(s1, s2);
            }
Exemplo n.º 17
0
            public void BarSeries()
            {
                var s1 = new OxyPlot.Series.BarSeries();
                var s2 = new BarSeries();

                OxyAssert.PropertiesAreEqual(s1, s2);
            }
Exemplo n.º 18
0
            public void LineSeries()
            {
                var s1 = new OxyPlot.Series.LineSeries();
                var s2 = new LineSeries();

                OxyAssert.PropertiesAreEqual(s1, s2);
            }
Exemplo n.º 19
0
 public void Series()
 {
     OxyAssert.PropertiesExist(typeof(OxyPlot.Series.Series), typeof(Series));
 }
Exemplo n.º 20
0
 public void XYAxisSeries()
 {
     OxyAssert.PropertiesExist(typeof(OxyPlot.Series.XYAxisSeries), typeof(XYAxisSeries));
 }
Exemplo n.º 21
0
 public void DataPointSeries()
 {
     OxyAssert.PropertiesExist(typeof(OxyPlot.Series.DataPointSeries), typeof(DataPointSeries));
 }
Exemplo n.º 22
0
 public void PlotElement()
 {
     OxyAssert.PropertiesExist(typeof(PlotElement), typeof(Series));
 }
Exemplo n.º 23
0
 public void ItemsSeries()
 {
     OxyAssert.PropertiesExist(typeof(OxyPlot.Series.ItemsSeries), typeof(ItemsSeries));
 }
Exemplo n.º 24
0
 public void Axis()
 {
     OxyAssert.PropertiesExist(typeof(OxyPlot.Axes.Axis), typeof(Axis));
 }
Exemplo n.º 25
0
 public void SelectableElement()
 {
     OxyAssert.PropertiesExist(typeof(SelectableElement), typeof(Series));
 }