mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-11 02:31:22 +00:00
18 lines
307 B
C#
18 lines
307 B
C#
using System.Threading;
|
|
using NUnit.Framework;
|
|
|
|
namespace DebugCompiler
|
|
{
|
|
[TestFixture]
|
|
public class TimeoutTest
|
|
{
|
|
[Test]
|
|
public void Do()
|
|
{
|
|
Assert.IsTrue(true);
|
|
Thread.Sleep(10 * 60 * 1000);
|
|
Assert.IsTrue(true);
|
|
|
|
}
|
|
}
|
|
}
|