public void AmountTest()
 {
     Transaction_Accessor target = new Transaction_Accessor(); // TODO: Initialize to an appropriate value
     Decimal expected = new Decimal(); // TODO: Initialize to an appropriate value
     Decimal actual;
     target.Amount = expected;
     actual = target.Amount;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void UsedTest()
 {
     Transaction_Accessor target = new Transaction_Accessor(); // TODO: Initialize to an appropriate value
     int expected = 0; // TODO: Initialize to an appropriate value
     int actual;
     target.Used = expected;
     actual = target.Used;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void TransactionConstructorTest1()
 {
     Transaction_Accessor target = new Transaction_Accessor();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void PlanIDTest()
 {
     Transaction_Accessor target = new Transaction_Accessor(); // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     target.PlanID = expected;
     actual = target.PlanID;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void munchMoneyTest()
 {
     Transaction_Accessor target = new Transaction_Accessor(); // TODO: Initialize to an appropriate value
     target.munchMoney();
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
 public void findTest()
 {
     Transaction_Accessor target = new Transaction_Accessor(); // TODO: Initialize to an appropriate value
     string @where = string.Empty; // TODO: Initialize to an appropriate value
     target.find(@where);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
 public void DateTimeTest()
 {
     Transaction_Accessor target = new Transaction_Accessor(); // TODO: Initialize to an appropriate value
     DateTime expected = new DateTime(); // TODO: Initialize to an appropriate value
     DateTime actual;
     target.DateTime = expected;
     actual = target.DateTime;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }