mirror of
https://github.com/Smaug123/AdventOfCode2021
synced 2025-10-05 07:48:41 +00:00
14 lines
249 B
Forth
14 lines
249 B
Forth
namespace AdventOfCode2021.Test
|
|
|
|
open AdventOfCode
|
|
open Xunit
|
|
open FsUnitTyped
|
|
|
|
module TestDay7 =
|
|
|
|
[<Fact>]
|
|
let ``Part 1`` () = Day7.part1 () |> shouldEqual 356992
|
|
|
|
[<Fact>]
|
|
let ``Part 2`` () = Day7.part2 () |> shouldEqual 101268110
|