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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T23:36:35+00:00 2026-05-16T23:36:35+00:00

I have a class library I want to unit test using Microsofts unit test

  • 0

I have a class library I want to unit test using Microsofts unit test framework. Some of the classes I want to test are configured using application settings. These settings are defined inside the Settings.settings file having application scope and suitable default values. When the library is used by the application these settings can be overriden in the App.Config file. If not the default values are used. That’s exactly how I want it to be.

In some of my test cases I want to test special combinations of setting values but I don’t know how to change the values seen by the class under test from the unit test code. These settings will always have their default value loaded from the attributes of the code generated class.

In my library class I access the settings like this:

var mySetting1 = Settings.Default.MySetting1;
var mySetting2 = Settings.Default.MySetting2;

How do I modify these settings in an unit test before the setting is accessed by the class under test? Making the internal settings class accessible by the unit test does not solve the problem as the settings have application scope and are read-only properties on the settings class.

  • 1 1 Answer
  • 2 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-16T23:36:35+00:00Added an answer on May 16, 2026 at 11:36 pm

    After spelunking into the ApplicationSettingsBase and associated classes I’ve come up with this solution to my problem. Not particular beautiful, but it certainly gets the job done.

    The code generated settings class is internal to the class library project and it has to be accessible to the unit test project. Add the [assembly: InternalsVisibleTo("UnitTestAssemblyName")] attribute to AssemblyInfo.cs in the class library project.

    The settings are lazy loaded from the attributes on the settings class when a value is accessed. First step is to do a “dummy” read of a setting to force this lazy load. When unit testing you want to avoid settings values changed in one test to affect another hence it is necessary to “reset” the settings before lazy loading them. That can be done using the Reload() method. This code is placed in the test initialize method:

    Settings.Default.Reload();
    var dummy = Settings.Default.MySetting1;
    

    The underlying values now exist and can be set in each test method. Remember to use the correct type as the code generated getters will do a cast:

    Settings.Default.PropertyValues["MyStringSetting1"].PropertyValue = "Foobar";
    Settings.Default.PropertyValues["MyDoubleSetting2"].PropertyValue = 3.1416D;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class library project which contains some content files configured with the
I have a class library which I want to call from my .NET application
Say we have a class library project containing 10 classes. Now I want to
I am using a unit testing framework to test my libraries. I have quite
I have a nunit class library containing test cases. I want to programmatically get
I have a class library assembly and some test code. Because the test code
I have a class library build in .net framework 4.0. i want to add
Suppose I have a class library cl1 and a unit test for it that
I have a separate class library that I'm using for all of my unit
Hi all I have Class Library project with some classes. I would like to

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.