Ejemplo n.º 1
0
        public void ThenEWalletUSDSectionUpdatedIs(EWalletSection updEWalletSection)
        {
            memoEWalletValues.USD += updEWalletSection.USD;

            new MenuPanel().GetEwalletTable()
            .ShouldBeEquivalentTo(memoEWalletValues, options => options.Including(ewallet => ewallet.USD),
                                  $"EWallet USD section не соответствуют ожидаемым");
        }
Ejemplo n.º 2
0
        public void ThenEWalletSectionsAre(EWalletSection updEWalletSection)
        {
            memoEWalletValues.USD += updEWalletSection.USD;
            memoEWalletValues.EUR += updEWalletSection.EUR;
            memoEWalletValues.RUB += updEWalletSection.RUB;

            new MenuPanel().GetEwalletTable()
            .ShouldBeEquivalentTo(memoEWalletValues, options => options.WithStrictOrdering(),
                                  $"EWallet section не соответствуют ожидаемым");
        }
Ejemplo n.º 3
0
 public void MemorizeEWalletSection()
 {
     memoEWalletValues = new MenuPanel().GetEwalletTable();
 }