コード例 #1
0
        public void GetMultiplier_Test1()
        {
            var protein = new Protein {
                Credit = 700, PreferredDays = 3, MaximumDays = 5, KFactor = 26.4
            };

            Assert.AreEqual(19.5, ProductionCalculator.GetMultiplier(protein, TimeSpan.FromMinutes(5 * 100)), 0.01);
        }