Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(day14): C# - Assertion hide LanguageExt.Map preserve order issue #4

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

HulinCedric
Copy link

@HulinCedric HulinCedric commented Mar 1, 2024

The signature of BeSome is BeSome(string because = "", params object[] becauseArgs), so the usage BeSome(expectedResult) doesn't assert the expectedResult.

By changing with Be(expectedResult) or more verbose BeSome().Which.Should().Be(expectedResult) or BeSome(s => s.Should().Be(expectedResult)) the assertion of the expectedResult is verified.

This revealed an issue with usage of the LanguageExt.Map because of lack of order preservation in usage of FirstOrDefault.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant