Ejemplo n.º 1
0
 public void ExecuteCommandTest()
 {
     CDBase target = new CDBase(); // TODO: Initialize to an appropriate value
     string SQL = string.Empty; // TODO: Initialize to an appropriate value
     int expected = 0; // TODO: Initialize to an appropriate value
     int actual;
     actual = target.ExecuteCommand(SQL);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Ejemplo n.º 2
0
 public void GetDTableTest()
 {
     CDBase target = new CDBase(); // TODO: Initialize to an appropriate value
     string SQL = string.Empty; // TODO: Initialize to an appropriate value
     DataTable expected = null; // TODO: Initialize to an appropriate value
     DataTable actual;
     actual = target.GetDTable(SQL);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Ejemplo n.º 3
0
 public void CDBaseConstructorTest()
 {
     CDBase target = new CDBase();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }