Exemplo n.º 1
0
def test_get_transaction_range():
    resp = oac.get_transaction_range(1, 1002, None)
    # logger.info(len(resp))
    # for t in resp:
    #     logger.info(t)
    # logger.info(list(resp))
    assert_is_not_none(resp)
Exemplo n.º 2
0
def assertIsNotNone(res):
    try:
        asserts.assert_is_not_none(res)
    except Exception as e:
        logger.error(e)
Exemplo n.º 3
0
def test_get_account_instruments():
    resp = oac.get_account_instruments()
    # logger.info(resp)
    assert_is_not_none(resp)
Exemplo n.º 4
0
def test_get_transation_list():
    resp = oac.get_transaction_list()
    # logger.info(resp)
    assert_is_not_none(resp)
Exemplo n.º 5
0
def test_get_account_summary():
    resp = oac.get_account_summary()
    # logger.info(resp)
    assert_is_not_none(resp)