mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-07 16:03:07 +00:00
17 lines
307 B
C#
17 lines
307 B
C#
|
|
namespace CodexDistTests.TestCore
|
|||
|
|
{
|
|||
|
|
public static class Utils
|
|||
|
|
{
|
|||
|
|
public static void Sleep(TimeSpan span)
|
|||
|
|
{
|
|||
|
|
Thread.Sleep(span);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public static T Wait<T>(Task<T> task)
|
|||
|
|
{
|
|||
|
|
task.Wait();
|
|||
|
|
return task.Result;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|