blob: 58341084d73f8c8126eab1e648586d01f6e42b6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
namespace Codeforces.Test
{
public class IOTester
{
private static StringReader? stdIn;
private static StringWriter? stdOut;
public static void Start()
{
stdOut = new StringWriter();
Console.SetOut(stdOut);
}
public static void SetInput(params string[] lines)
{
string input = string.Join(Environment.NewLine, lines);
stdIn = new StringReader(input);
Console.SetIn(stdIn);
}
public static IEnumerable<string> GetOutputLines()
{
return stdOut?.ToString()
.Split(Environment.NewLine)
.SkipLast(1)
?? Enumerable.Empty<string>();
}
}
}
|