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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T23:16:04+00:00 2026-06-11T23:16:04+00:00

I have a ASP.NET MVC3 application, where i need to test a database wrapper

  • 0

I have a ASP.NET MVC3 application, where i need to test a database wrapper class. This is up and running. But i need to recreate the database, when the test starts. I need to wipe all data in database. The database is a test double.

I have the SQL script creating the database. For now im running this manualy in “SQL Server Manager” and it works. But I would like to have the script run before a new test run.

Anyone know how to do this?

  • 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-11T23:16:06+00:00Added an answer on June 11, 2026 at 11:16 pm

    EDIT – Replacing with a decent answer.

    Create a C# class that looks like this –

    using System;
    using NUnit.Framework;
    
    namespace NUnit.Tests
    {
      [SetUpFixture]
      public class MySetUpClass
      {
        [OneTimeSetUp]
        public void RunBeforeAnyTests()
        {
          // Set up my database with SQL scripts run via SqlCommand
        }
    
        [OneTimeTearDown]
        public void RunAfterAnyTests()
        {
          // tear down my database  with SQL scripts run via SqlCommand
        }
      }
    }
    

    That should run setup once only before any tests, and then teardown once only after all tests have completed.

    I realize I’m raising this one from the dead but I felt it was time it got a decent answer.

    In any case, there is a much better way. Mock your datalayer and test that. Then make certain everything done with SQL Server is in the form of Stored Procedures and Functions. Then use Visual Studio to create unit tests for those sprocs and functions.

    If you have logic in your repositories, I recommend grabbing Insight.Database and making use of its AutoInterface feature. That way, your repository layer is merely an interface, which you can easily mock and move on.

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

Sidebar

Related Questions

I am creating an ASP.NET MVC3 application using NHIBERNATE. I have a base class
This is about asp.net mvc3 web application. We have used Object cache to store
I'm learning ASP.NET MVC3 and doing an application with CMS capabilities - but have
I have an asp.net mvc3 C# application. It uses a database. The database supports
I have an ASP.NET MVC3 application that I have built and it has two
I have a ASP.NET MVC3 application that handles time-consuming processes (copying a large file
I have written an ASP.NET MVC3 Web application which runs perfectly inside the Visual
In my asp.net mvc3 application, I have a custom Authorization Attribute as seen below.
I have a problem with a model in a asp.net mvc3 application. First of
My application is in ASP.net MVC3. I have a table of elements. An element

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.