Beispiel #1
0
 public void TestGetConfigName01()
 {
     using (HistDataPointGroup histDataPointGroup = HistDataPointGroupFactory.CreateHistDataPointGroup01())
     {
         string str = histDataPointGroup.GetConfigName();
     }
 }
Beispiel #2
0
 public void TestSetCurrentGrpName01()
 {
     using (HistDataPointGroup histDataPointGroup = HistDataPointGroupFactory.CreateHistDataPointGroup01())
     {
         string grpName = string.Empty;
         histDataPointGroup.SetCurrentGrpName(grpName);
     }
 }
Beispiel #3
0
 public void TestSetFormType01()
 {
     using (HistDataPointGroup histDataPointGroup = HistDataPointGroupFactory.CreateHistDataPointGroup01())
     {
         FormType type = FormType.Save;
         histDataPointGroup.SetFormType(type);
     }
 }
Beispiel #4
0
 public void TestInitializeComponent01()
 {
     using (HistDataPointGroup histDataPointGroup = HistDataPointGroupFactory.CreateHistDataPointGroup01())
     {
         Accessor histDataPointGroupAccessor = ReflectionAccessor.Wrap(histDataPointGroup);
         histDataPointGroupAccessor.Call("InitializeComponent");
     }
 }
Beispiel #5
0
 public void TestTranslateCaption01()
 {
     using (HistDataPointGroup histDataPointGroup = HistDataPointGroupFactory.CreateHistDataPointGroup01())
     {
         FormType type = FormType.Save;
         histDataPointGroup.SetFormType(type);
         histDataPointGroup.TranslateCaption();
         type = FormType.Load;
         histDataPointGroup.SetFormType(type);
         histDataPointGroup.TranslateCaption();
     }
 }