mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-03 05:53:12 +00:00
17 lines
301 B
C#
17 lines
301 B
C#
namespace CodexDistTestCore
|
|
{
|
|
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;
|
|
}
|
|
}
|
|
}
|