public void calculateCompoundInterestTest()
 {
     double Principal = 0F; // TODO: Initialize to an appropriate value
     double InterestRate = 0F; // TODO: Initialize to an appropriate value
     Decimal NumberOfPeriods = new Decimal(); // TODO: Initialize to an appropriate value
     Utils.CompoundType compoundType = new Utils.CompoundType(); // TODO: Initialize to an appropriate value
     double expected = 0F; // TODO: Initialize to an appropriate value
     double actual;
     actual = Utils.calculateCompoundInterest(Principal, InterestRate, NumberOfPeriods, compoundType);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void GetCompoundTypeTest()
 {
     int typeId = 0; // TODO: Initialize to an appropriate value
     Utils.CompoundType expected = new Utils.CompoundType(); // TODO: Initialize to an appropriate value
     Utils.CompoundType actual;
     actual = Utils.GetCompoundType(typeId);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }