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