chore: remove useless tests

This commit is contained in:
Kyle Ratti 2024-05-03 18:26:22 -04:00
parent 055805fd5c
commit ec4dedfbdb
No known key found for this signature in database
GPG Key ID: 4D429B6287C68DD9

View File

@ -51,13 +51,6 @@ public class MaybeExtensionTests
Assert.That(result.HasValue, Is.False); Assert.That(result.HasValue, Is.False);
} }
[Test]
public void TestToMaybe()
{
Assert.That(Maybe.Empty<int>(), Is.EqualTo(Maybe.Empty<int>()));
Assert.That(Maybe.Create(2), Is.Not.EqualTo(Maybe.Create(293921)));
}
[Test] [Test]
public void MaybeNullableTests() public void MaybeNullableTests()
{ {