mirror of
https://github.com/Smaug123/AdventOfCode2021
synced 2025-10-07 16:58:40 +00:00
18 lines
278 B
Forth
18 lines
278 B
Forth
namespace AdventOfCode2021.Test
|
|
|
|
open AdventOfCode
|
|
open Xunit
|
|
open FsUnitTyped
|
|
|
|
module TestDay1 =
|
|
|
|
[<Fact>]
|
|
let ``Part 1`` () =
|
|
Day1.part1 ()
|
|
|> shouldEqual 1766
|
|
|
|
[<Fact>]
|
|
let ``Part 2`` () =
|
|
Day1.part2 ()
|
|
|> shouldEqual 1797
|