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 9169345
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T15:51:42+00:00 2026-06-17T15:51:42+00:00

I have methods like this: public static bool ChangeCaseEstimatedHours(int caseID, decimal? time) { Case

  • 0

I have methods like this:

public static bool ChangeCaseEstimatedHours(int caseID, decimal? time)
   {
       Case c = Cases.Get(caseID);

       if (c != null)
       {
           c.EstimatedHours = time;
           return Cases.Update(c);
       }

       return false;
   }

   public static bool RemoveCase(int caseID)
   {
       return Cases.Remove(caseID);
   }

which internally uses LINQ to do the queries.

I am wondering how I should go about testing these. They do not have a state so they are static. They also modify the database.

Thus, I would have to create a case, then remove it in the same test, but a unit test should only be doing 1 thing. What is usually done in these situations?

How do I test database queries, updates and deletes?

Thanks

  • 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-06-17T15:51:43+00:00Added an answer on June 17, 2026 at 3:51 pm

    There is a difference between “Knowing the path and walking the path”. What you want to test would class as an integration test not a unit test. A unit test is something that is carried out in isolation without any external dependencies and therefore makes the test runnable even if the machine you are running it on does not have a physical database instance present on it. See more differences here.

    That’s why patterns like Repository are really popular when it comes to doing persistence based applications as they promote unit test-ability of the data layer via Mocking. See a sample here.

    So, you have 2 options (the blue pill Or the red pill):

    Blue Pill: Buy a tool like TypeMock Isolator essential or JustMock and you’ll be able to mock anything in your code “and the story ends”.

    Red Pill: Refactor existing design of the data layer to one of the interface based patterns and use free Mocking frameworks like Moq or RhinoMocks and “see how deep the rabbit hole goes”

    All the best.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have a method like this: public JObject Get(int id) { return new JObject(new
I have a method that looks like this: public static String escape(String text) {
I have 2 functions/methods in the same controller in CodeIgniter like this: public function
I have a method like this: public IOrganizationService GetConnection(bool multi) { if(!multi) { Parallel.For(0,
If I have a method like this: public void DoSomething(int Count, string[] Lines) {
I have a static method like this public static string DoSomethingToString(string UntrustedString) { //parse
I have this method with a huge switch statement like this: public bool ExecuteCommand(string
Lets say I have this extention method: public static bool HasFive<T>(this IEnumerable<T> subjects) {
I have a Dependency Property like this public static readonly DependencyProperty ShowTooltipProperty = DependencyProperty.Register(
I have wriiten a method like this public ArrayList<T> GetDoctorDetail(String name) { if (name!=null

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.