Example #1
0
        public async Task RemoveTest()
        {
            _handler.Expect(HttpMethod.Post, $"{BaseUri}sandbox/remove")
            .WithQueryString("brokerAccountId", BrokerAccountId)
            .WithoutContent()
            .RespondJsonFromFile("ok");

            await _context.RemoveAsync(BrokerAccountId);
        }