FruityFoundation/Base.Tests/Extensions/FSharpExtensionTests.cs

17 lines
439 B
C#
Raw Normal View History

2021-11-19 00:12:02 -05:00
using CommonCore.Base.Extensions;
using CommonCore.Base.Structures;
using Microsoft.FSharp.Core;
using NUnit.Framework;
namespace Base.Tests.Extensions;
public class FSharpExtensionTests
{
[Test]
public void TestNoneIntToMaybe() =>
Assert.AreEqual(Maybe<int>.Empty(), FSharpOption<int>.None.ToMaybe());
[Test]
public void TestSomeIntToMaybe() =>
Assert.AreEqual(Maybe<int>.Create(25), FSharpOption<int>.Some(25).ToMaybe());
}