Add tests for additional day 12 examples

This commit is contained in:
2025-02-14 18:58:09 +01:00
parent ee60c23cfb
commit 0718a1285e
5 changed files with 20 additions and 0 deletions

View File

@@ -188,6 +188,14 @@ TEST_CASE("[GardenGroupsTests]")
{
test.run(std::make_unique<GardenGroups>(), 1930, 0, test.getExampleInputPaths());
}
SECTION("ExampleData2")
{
test.run(std::make_unique<GardenGroups>(2), 140, 0, test.getExampleInputPaths());
}
SECTION("ExampleData3")
{
test.run(std::make_unique<GardenGroups>(3), 772, 0, test.getExampleInputPaths());
}
}
TEST_CASE("[LanPartyTests]")