aoc/AOC.Test/Test2017.cs
Ben Harris e8b7022c03
All checks were successful
continuous-integration/drone/push Build is passing
add files for missing years and start on 2015 puzzles
2022-11-11 13:42:42 -05:00

14 lines
265 B
C#

using AOC2017;
namespace AOC.Test;
[TestClass]
public class Test2017
{
[DataTestMethod]
[DataRow(typeof(Day01), "", "")]
public void TestAllDays(Type dayType, string part1, string part2)
{
Common.CheckDay(dayType, part1, part2);
}
}