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

QueryAsync returns no records #91

Open
molynerd opened this issue Aug 22, 2023 · 0 comments
Open

QueryAsync returns no records #91

molynerd opened this issue Aug 22, 2023 · 0 comments

Comments

@molynerd
Copy link

molynerd commented Aug 22, 2023

Either I've configured something incorrectly, or QueryAsync doesn't work.

  • xunit 2.4.2
  • Dapper 2.0.151
  • Moq 4.20.69
  • Moq.Dapper 1.0.7
public class SomethingToMock
{
    private string Key;

    public SomethingToMock(string key)
    {
        Key = key;
    }
}

[Fact]
public async Task DoesMoqDapperWork()
{
    var connection = new Mock<IDbConnection>();

    var expected = new[]
    {
        new SomethingToMock ("asdf")
    };

    connection.SetupDapperAsync(c => c.QueryAsync<SomethingToMock>(It.IsAny<string>(), null, null, null, null))
        .ReturnsAsync(expected);

    var data = await connection.Object.QueryAsync<SomethingToMock>("foo");
    Assert.Equal(expected.Length, data.Count());
}
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

No branches or pull requests

1 participant