Beispiel #1
0
        public void Should_Calculate_Amount_In_PLN()
        {
            //given
            var account = new Account("1234", AccountType.LO1, Currency.USD, 1m);

            //when
            decimal amount = workService.GetAccountAmountInPLN(account);

            //then
            Assert.That(3.72m, Is.EqualTo(amount));
        }