示例#1
0
 public void ClosedLoop_ToGDL_true_test()
 {
     ClosedLoop target = new ClosedLoop();
     target.State = "true";
     string expected = "Closed loop";
     string actual;
     actual = target.ToGDL();
     Assert.AreEqual(expected, actual);
 }
示例#2
0
 public void ClosedLoop_ToGDL_other_test()
 {
     ClosedLoop target = new ClosedLoop();
     target.State = "false";
     string expected = string.Empty;
     string actual;
     actual = target.ToGDL();
     Assert.AreEqual(expected, actual);
 }