Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5998155
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T00:21:55+00:00 2026-05-23T00:21:55+00:00

I have a method that calls stored procedure and returns the data after executing

  • 0

I have a method that calls stored procedure and returns the data after executing DataReader.
I am trying to test the method using mock. I am not sure how to return value?

Anyone did this? Appreciate your responses.

Here is my code:

// Call the StoredProcedure
    public List<string> GetCompletedBatchList(int fileId)
    {
        List<string> completedBatches = new List<string>();

        StoredProcedure sp = new StoredProcedure("GetDistributedBatches", this.dataProvider);
        sp.Command.AddParameter("FileID", fileId, DbType.Int32, ParameterDirection.Input);
        sp.Command.AddParameter("Result", null, DbType.Int32, ParameterDirection.InputOutput);
        using (var rdr = sp.ExecuteReader())
        {
            while (rdr != null && rdr.Read())
            {
                if (rdr[0] != null)
                {
                    completedBatches.Add(rdr[0].ToString());
                }
            }
        }
        return completedBatches;
    }

Here is the Test Method:

[Test]
    public void Can_get_completedBatches()
    {
        var file = new File() { FileID = 1, DepositDate = DateTime.Now };
        repo.Add<File>(file);

        CompletedBatches completedBatches = new CompletedBatches(provider.Object);


        //Here I am not sure how to Return  
        provider.Setup(**x => x.ExecuteReader(It.IsAny<QueryCommand>())).Returns**  =>
        {
            cmd.OutputValues.Add(0);
        });
        var completedBatchesList = completedBatches.GetCompletedBatchList(file.FileID);
        Assert.AreEqual(0, completedBatchesList.Count());

    }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T00:21:56+00:00Added an answer on May 23, 2026 at 12:21 am

    The following link helped me…
    How to mock an SqlDataReader using Moq – Update

    I used MockDbDataReader method to mock the data

     [Test]
            public void Can_get_completedBatches_return_single_batch()
            {
                var date = DateTime.Now;
                var file = new File() { FileID = 202, DepositDate = DateTime.Now };
                var batch1 = new Batch() { FileID = 202, BatchID = 1767, LockboxNumber = "1", IsLocked = true, LockedBy = "testUser" };
                var transaction1 = new Transaction() { BatchID = 1767, TransactionID = 63423, CheckAmount = 100.0 };
                var distribution1 = new Distribution() { TransactionID = 63423, InvoiceNumber = "001", Amount = 100.0, DateCreated = date, DateModified = date, TransType = 2 };
    
                repo.Add<File>(file);
                repo.Add<Batch>(batch1);
                repo.Add<Transaction>(transaction1);
                repo.Add<Distribution>(distribution1);
    
                CompletedBatches completedBatches = new CompletedBatches(provider.Object);
    
                provider.Setup(x => x.ExecuteReader(It.IsAny<QueryCommand>())).Returns(MockDbDataReader());
    
                var completedBatchesList = completedBatches.GetCompletedBatchList(202);
                Assert.AreEqual(1, completedBatchesList.Count());
    
            }
    
    
    // You should pass here a list of test items, their data
        // will be returned by IDataReader
        private DbDataReader MockDbDataReader(List<TestData> ojectsToEmulate)
        {
            var moq = new Mock<DbDataReader>();
    
            // This var stores current position in 'ojectsToEmulate' list
            int count = -1;
    
            moq.Setup(x => x.Read())
                // Return 'True' while list still has an item
                .Returns(() => count < ojectsToEmulate.Count - 1)
                // Go to next position
                .Callback(() => count++);
    
            moq.Setup(x => x["BatchID"])
                // Again, use lazy initialization via lambda expression
                .Returns(() => ojectsToEmulate[count].ValidChar);
    
            return moq.Object;
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.