示例#1
0
        public void TestTaxaJurosController()
        {
            SimulaController taxa   = new SimulaController();
            double           result = taxa.GetTaxaJuros();

            Assert.IsNotNull(result);
        }
示例#2
0
        public void TestCalculaJurosController()
        {
            decimal          valorInicial = 100;
            int              tempo        = 5;
            SimulaController simula       = new SimulaController();
            string           result       = simula.GetCalculaJuros(valorInicial, tempo);

            Assert.IsNotNull(result);
        }