public void GetPositionsAsync_should_throw_ArgumentException_if_futures_group_id_is_null_1() { //arrange var obj = new LeverageApi(TestHelper.CreateApiClientWithMockHttpAccessor()); //act var actual = Record.ExceptionAsync(async() => await obj.GetPositionsAsync("futures", groupId: null)); //assert Assert.IsType <ArgumentException>(actual.Result); }
public void GetPositionsAsync_should_throw_ArgumentException_if_futures_group_id_is_null_2() { //arrange var obj = new LeverageApi(TestHelper.CreateApiClientWithMockHttpAccessor()); var parameters = new Dictionary <string, string> { { "type", "futures" } }; //act var actual = Record.ExceptionAsync(async() => await obj.GetPositionsAsync(parameters)); //assert Assert.IsType <ArgumentException>(actual.Result); }
public async void GetPositionsAsync_should_success(string jsonString, string type, int?groupId, int?from, int?count, int?fromId, int?endId, string order, long?since, long?end, string currencyPair) { //arrange var response = TestHelper.CreateJsonResponse(jsonString); var obj = new LeverageApi(TestHelper.CreateApiClientWithMockHttpAccessor(response)); //act var actual = await obj.GetPositionsAsync( type, groupId, from, count, fromId, endId, order, since, end, currencyPair); //assert Assert.NotNull(actual); Assert.IsAssignableFrom <IDictionary <int, GetPositionsResponse> >(actual); }