mirror of
https://github.com/vacp2p/cs-codex-dist-tests.git
synced 2025-02-24 08:18:20 +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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|