Part 2 and actual testing

This commit is contained in:
2024-12-01 17:05:41 +01:00
parent 73f886359b
commit f4a5ffe3ce
3 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
variables {
input = file("../../tests/samples/01.txt")
}
run "run" {
command = plan
assert {
condition = output.part1 == 11
error_message = "Part1 output is wrong"
}
assert {
condition = output.part2 == 31
error_message = "Part2 output is wrong"
}
}