mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-08 00:16:27 +00:00
Fixed tests
This commit is contained in:
parent
b18204a52d
commit
379ded6832
@ -1,5 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using CryptoExchange.Net.Interfaces;
|
using CryptoExchange.Net.Interfaces;
|
||||||
using CryptoExchange.Net.Objects;
|
using CryptoExchange.Net.Objects;
|
||||||
@ -22,12 +23,12 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
|
|
||||||
public override void Dispose() {}
|
public override void Dispose() {}
|
||||||
|
|
||||||
protected override Task<CallResult<bool>> DoResyncAsync()
|
protected override Task<CallResult<bool>> DoResyncAsync(CancellationToken ct)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new NotImplementedException();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override Task<CallResult<UpdateSubscription>> DoStartAsync()
|
protected override Task<CallResult<UpdateSubscription>> DoStartAsync(CancellationToken ct)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new NotImplementedException();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user