public void TestTranslateCaption01() { using (HistDataPointList histDataPointList = HistDataPointListFactory.CreateHistDataPointList01()) { histDataPointList.TranslateCaption(); } }
public void TestInitializeComponent01() { using (HistDataPointList histDataPointList = HistDataPointListFactory.CreateHistDataPointList01()) { Accessor histDataPointListAccessor = ReflectionAccessor.Wrap(histDataPointList); histDataPointListAccessor.Call("InitializeComponent"); } }
public void TestDispose01() { using (HistDataPointList histDataPointList = HistDataPointListFactory.CreateHistDataPointList01()) { bool disposing = false; Accessor histDataPointListAccessor = ReflectionAccessor.Wrap(histDataPointList); histDataPointListAccessor.Call("Dispose", disposing); } }
public void TestInitializeDataPointListDataGridView02() { //Exception caught using (HistDataPointList histDataPointList = HistDataPointListFactory.CreateHistDataPointList01()) { Accessor histDataPointListAccessor = ReflectionAccessor.Wrap(histDataPointList); histDataPointListAccessor.Call("InitializeDataPointListDataGridView"); } }