()
| 62 | |
| 63 | |
| 64 | def test_microseconds(): |
| 65 | exchange = ccxt.Exchange({ |
| 66 | 'id': 'sampleexchange', |
| 67 | }) |
| 68 | value = exchange.microseconds() |
| 69 | value_string = str(value) |
| 70 | assert value > 0 |
| 71 | assert len(value_string) == 16 |
| 72 | |
| 73 | |
| 74 | def test_milliseconds(): |
no test coverage detected
searching dependent graphs…