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

16 lines
336 B
C#
Raw Normal View History

2022-12-03 05:55:49 +00:00
using AOC2018;
namespace AOC.Test;
[TestClass]
public class Test2018
{
[DataTestMethod]
2022-12-11 01:18:34 +00:00
[DataRow(typeof(Day01), "582", "488")]
[DataRow(typeof(Day02), "5166", "cypueihajytordkgzxfqplbwn")]
public void CheckAllDays(Type dayType, string part1, string part2)
{
Common.CheckDay(dayType, part1, part2);
}
2022-12-03 05:55:49 +00:00
}