Exemple #1
0
        public void Coin005ConstructorTest()
        {
            Coin005 coin005 = new Coin005();

            //assert coin of 5 cent has diameter of 21.21mm, and thickness of 1.95mm
            Assert.AreEqual(21.21m, coin005.diameter);
            Assert.AreEqual(1.95m, coin005.thickness);
        }
Exemple #2
0
        public void Coin005AddJarTest()
        {
            Coin005 coin005 = new Coin005();
            Jar     jar     = new Jar();

            //add the 5-cent coin to the jar
            coin005.AddToJar(jar);

            //assert jar.Coin005Counter is 1 and jar.CurrentAmount is $0.05
            Assert.AreEqual(1, jar.Coin005Counter);
            Assert.AreEqual(0.05m, jar.CurrentAmount);
        }
        public void FillUpwithRandomCoinTest()
        {
            Jar jar = new Jar();

            // The Random() constructor uses the system clock to provide a seed value.
            Random rnd = new Random();

            // coin.AddToJar failure indicates jar full.
            var addJarSucceeded = false;

            do
            {
                // Generate random int with range of [1,6]
                // 1-- 1 cent coin
                // 2-- 5 cent coin
                // 3-- 10 cent coin
                // 4-- 25 cent coin
                // 5-- 50 cent coin
                // 6-- $1 coin
                var coinType = rnd.Next(1, 7);
                switch (coinType)
                {
                case 1:
                    addJarSucceeded = new Coin001().AddToJar(jar);
                    break;

                case 2:
                    addJarSucceeded = new Coin005().AddToJar(jar);
                    break;

                case 3:
                    addJarSucceeded = new Coin010().AddToJar(jar);
                    break;

                case 4:
                    addJarSucceeded = new Coin025().AddToJar(jar);
                    break;

                case 5:
                    addJarSucceeded = new Coin050().AddToJar(jar);
                    break;

                default:
                    addJarSucceeded = new Coin100().AddToJar(jar);
                    break;
                }
            }
            //loop while last filling succeeded
            while (addJarSucceeded);

            jar.PrintJar();
        }
        public void FillUpwith5CentCoinTest()
        {
            Jar     jar     = new Jar();
            Coin005 coin005 = new Coin005();

            //fill up with 5-cent coins
            while (coin005.AddToJar(jar))
            {
                ;
            }

            jar.PrintJar();
        }