aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSerghei Cebotari <serghei@cebotari.ru>2023-12-07 21:55:12 +0300
committerSerghei Cebotari <serghei@cebotari.ru>2023-12-07 21:55:12 +0300
commit6e09130629679328b517810ee5670ca3bab0af16 (patch)
treef8e4eb343013a7d53d0909212f6fc164fecc5400
parent2f7e2da782af6e2b272ef1a723b55e4ffc52244c (diff)
Add timeout
-rw-r--r--Codeforces.Test/Tests.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Codeforces.Test/Tests.cs b/Codeforces.Test/Tests.cs
index f45b503..9623788 100644
--- a/Codeforces.Test/Tests.cs
+++ b/Codeforces.Test/Tests.cs
@@ -4,7 +4,7 @@ namespace Codeforces.Test;
public class Tests
{
- [Fact]
+ [Fact(Timeout = 30000)]
public void TestText()
{
IOTester.Start();
@@ -32,7 +32,7 @@ public class Tests
Assert.Equal(expected, actual);
}
- [Theory]
+ [Theory(Timeout = 30000)]
[ClassData(typeof(FileNameGenerator))]
public void TestIO(string input, string output)
{