Ejemplo n.º 1
0
        public void TestTaumAndBdaySolution(Int64 blackQuota, Int64 whiteQuota, Int64 blackCost, Int64 whiteCost, Int64 conversionCost, Int64 expected)
        {
            // Arrange/Act
            Int64 actual = new Solutions.Implementation.TaumAndBday.Solution().ComputeTotalCost(blackQuota, whiteQuota, blackCost, whiteCost, conversionCost);

            // Assert
            NUnit.Framework.Assert.AreEqual(expected, actual);
        }
Ejemplo n.º 2
0
        public void TestTaumAndBdaySolution(Int64 blackQuota, Int64 whiteQuota, Int64 blackCost, Int64 whiteCost, Int64 conversionCost, Int64 expected)
        {
            // Arrange/Act
            Int64 actual = new Solutions.Implementation.TaumAndBday.Solution().ComputeTotalCost(blackQuota, whiteQuota, blackCost, whiteCost, conversionCost);

            // Assert
            NUnit.Framework.Assert.AreEqual(expected, actual);
        }