Skip to content

Better support for ActionResult<T> #35

Open
@cremor

Description

@cremor

Continuation of #21

Instead of having to write

ActionResult<TestDto> result = await _controller.GetTestItemAsync(id);
result.Result.Should().BeNotFoundResult();

I'd like to write

ActionResult<TestDto> result = await _controller.GetTestItemAsync(id);
result.Should().BeNotFoundResult();

Activity

faddiv

faddiv commented on Aug 11, 2023

@faddiv
Collaborator

I never got the admin privilege on the nuget package. Also, I didn't use this for a long time. I'm afraid this project died.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      No branches or pull requests

        Participants

        @cremor@faddiv

        Issue actions

          Better support for `ActionResult<T>` · Issue #35 · fluentassertions/fluentassertions.aspnetcore.mvc