ben
/
aoc
1
0
Fork 0
aoc/AOC.Test/Test2018.cs

15 lines
264 B
C#
Raw Normal View History

2022-12-03 05:55:49 +00:00
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);
}
2022-12-03 05:55:49 +00:00
}