ExtensionDsLab/tests/LogicalHacking.ExtensionDsL.../Tests.fs

11 lines
223 B
Forth

module LogicalHacking.ExtensionDsLab.Tests
open LogicalHacking.ExtensionDsLab
open NUnit.Framework
[<Test>]
let ``hello returns 42`` () =
let result = Library.hello 42
printfn "%i" result
Assert.AreEqual(42,result)