Ejemplo n.º 1
0
        public async Task can_delete_an_account()
        {
            Address acc = await _wallet.CreateAccount();

            await _wallet.DeleteAccount(acc);

            Guid?accountId = await _wallet.RetrieveId(acc);

            accountId.Should().BeNull();
        }