EKG_Project.GUI.AnalysisControlTest.TestPlots.TestPlots C# (CSharp) Method

TestPlots() public method

public TestPlots ( ) : System
return System
            public TestPlots()
            {
                this.PlotTitle = "Test";
                this.PlotPoints = new List<DataPoint>
                              {
                                  new DataPoint(0, 4),
                                  new DataPoint(10, 13),
                                  new DataPoint(20, 15),
                                  new DataPoint(30, 16),
                                  new DataPoint(40, 12),
                                  new DataPoint(50, 12)
                              };
            }
AnalysisControlTest.TestPlots