public async Task ClearTest()
        {
            _handler.Expect(HttpMethod.Post, $"{BaseUri}sandbox/clear")
            .WithQueryString("brokerAccountId", BrokerAccountId)
            .WithoutContent()
            .RespondJsonFromFile("ok");

            await _context.ClearAsync(BrokerAccountId);
        }