add int return type for template functions

This commit is contained in:
Colin McMillen 2020-12-07 13:45:15 -05:00
parent 7438fc97a9
commit d6a78fb66e

View File

@ -9,16 +9,18 @@ namespace AdventOfCode {
public class DayXX {
static void Part1() {
static int Part1() {
return -1;
}
static void Part2() {
static int Part2() {
return -1;
}
[Fact(Skip = "template")]
[Fact]
public static void Test() {
Part1();
Part2();
Assert.Equal(-1, Part1());
Assert.Equal(-1, Part2());
}
}
}