mirror of
https://github.com/Smaug123/AdventOfCode2021
synced 2025-10-05 15:58:40 +00:00
15 lines
265 B
Forth
15 lines
265 B
Forth
namespace AdventOfCode2021.Test
|
|
|
|
open AdventOfCode
|
|
open Xunit
|
|
open FsUnitTyped
|
|
|
|
module TestDay6 =
|
|
|
|
[<Fact>]
|
|
let ``Part 1`` () = Day6.part1 () |> shouldEqual 365131UL
|
|
|
|
[<Fact>]
|
|
let ``Part 2`` () =
|
|
Day6.part2 () |> shouldEqual 1650309278600UL
|