Example #1
0
        public void PologTest()
        {
            Racun test = new Racun("$", 0778);

            test.Polog(100);

            test.Polog(-30);
            Assert.AreEqual(test.StanjeEUR, 70);
        }
Example #2
0
        public void StanjeEUR()
        {
            Racun test = new Racun("$", 0.778);

            test.Polog(30);
            Assert.AreEqual(test.StanjeEUR, 30);
        }