aboutsummaryrefslogtreecommitdiff
path: root/Codeforces.Test/Tests.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Codeforces.Test/Tests.cs')
-rw-r--r--Codeforces.Test/Tests.cs34
1 files changed, 13 insertions, 21 deletions
diff --git a/Codeforces.Test/Tests.cs b/Codeforces.Test/Tests.cs
index a719b3b..f45b503 100644
--- a/Codeforces.Test/Tests.cs
+++ b/Codeforces.Test/Tests.cs
@@ -8,32 +8,28 @@ public class Tests
public void TestText()
{
IOTester.Start();
- string[] input = new[]
- {
- "5",
+ string[] input =
+ [
+ "5",
"256 42",
"1000 1000",
"-1000 1000",
"-1000 1000",
"20 22"
- };
+ ];
IOTester.SetInput(input);
Program.Main();
- string[] expectedOutput = new[]
- {
- "298",
+ string[] expected =
+ [
+ "298",
"2000",
"0",
"0",
"42"
- };
- string[] actualOutput = IOTester.GetOutputLines();
- Assert.Equal(expectedOutput.Length, actualOutput.Length);
- for (int i = 0; i < expectedOutput.Length; i++)
- {
- Assert.Equal(expectedOutput[i], actualOutput[i]);
- }
+ ];
+ string[] actual = IOTester.GetOutputLines().ToArray();
+ Assert.Equal(expected, actual);
}
[Theory]
@@ -46,13 +42,9 @@ public class Tests
Program.Main();
- string[] expectedOutput = File.ReadLines(output).ToArray();
- string[] actualOutput = IOTester.GetOutputLines();
- Assert.Equal(expectedOutput.Length, actualOutput.Length);
- for (int i = 0; i < expectedOutput.Length; i++)
- {
- Assert.Equal(expectedOutput[i], actualOutput[i]);
- }
+ var expectedOutput = File.ReadLines(output);
+ var actualOutput = IOTester.GetOutputLines();
+ Assert.Equal(expectedOutput, actualOutput);
}
}
public class FileNameGenerator : IEnumerable<object[]>