2
0
mirror of synced 2025-01-19 13:02:05 +00:00

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;
}
}
}