예제 #1
0
        public void WhenNewPlayerBankAccountIsCreated()
        {
            ScenarioContext.Current.Should().ContainKey("playerId");
            var playerId = ScenarioContext.Current.Get <Guid>("playerId");

            var playerBankAccount = PaymentHelper.CreatePlayerBankAccount(playerId, DefaultBrandId, true);

            ScenarioContext.Current.Add("playerBankAccountId", playerBankAccount.Id);
        }