2023-03-21 12:20:21 +00:00
|
|
|
|
namespace CodexDistTestCore
|
2023-03-17 10:43:29 +00:00
|
|
|
|
{
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|