Beispiel #1
0
        public void EnoughCurrencyCheck_RemoveCurrency_Test()
        {
            float expected = controller.Faction.CurrencyController.Model.Currency - (float)def.Cost;

            controller.EnoughCurrencyCheck(def);

            Assert.AreEqual(expected, controller.Faction.CurrencyController.Model.Currency);
        }