use of org.knowm.xchange.utils.nonce.AtomicLongIncrementalTime2013NonceFactory in project XChange by knowm.
the class BleutradeExchangeIntegration method shouldCreateNonceFactory.
@Test
public void shouldCreateNonceFactory() {
// when
SynchronizedValueFactory factory = exchange.getNonceFactory();
// then
assertThat(factory).isNotNull();
assertThat(factory instanceof AtomicLongIncrementalTime2013NonceFactory).isTrue();
}
Aggregations