aoc/AOC.Test/Test2018.cs
Ben Harris 49b2c5c515
All checks were successful
continuous-integration/drone/push Build is passing
Use builtin Enumerable.Chunk() and fix test method naming
2022-12-03 19:36:09 -05:00

15 lines
264 B
C#

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