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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T07:35:02+00:00 2026-06-03T07:35:02+00:00

I have 2 classes: FirstDeep.cs SecondDeep.cs I did simple code for example: class FirstDeep

  • 0

I have 2 classes:

  • FirstDeep.cs
  • SecondDeep.cs

    I did simple code for example:


class FirstDeep
    {
        public FirstDeep() { }

        public string AddA(string str)
        {
            SecondDeep sd = new SecondDeep();
            bool flag = sd.SomethingToDo(str);

            if (flag == true)
                str = string.Concat(str, "AAA");
            else
                str = string.Concat(str, "BBB");

            return str;
        }
    }

and

class SecondDeep
    {
        public bool SomethingToDo(string str)
        {
            bool flag = false;
            if (str.Length < 10)
            {
                //todo something in DB, and after that flag should be TRUE
            }
            return flag;
        }
    }

Then I want to write unit test for method “AddA”:

class Tests
    {
        [Test]
        public void AddATest()
        {
            string expected = "ABCAAA";

            FirstDeep fd = new FirstDeep();
            string res = fd.AddA("ABC");

            Assert.AreEqual(expected, res);
        }
    }

And after that I have trouble, I don’t know how correct write stub for method SomethingToDo in my Test class. I always have false. I should just return TRUE. But how?

  • 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-03T07:35:04+00:00Added an answer on June 3, 2026 at 7:35 am

    A good way to allow you to write stubs is to use dependency injection. FirstDeep depends on SecondDeep and in your test you want to replace SecondDeep with a stub.

    First change your existing code by extracting an interface for SecondDeep and then inject that into FirstDeep in the constructor:

    interface ISecondDeep {
    
      Boolean SomethingToDo(String str);
    
    }
    
    class SecondDeep : ISecondDeep { ... }
    
    class FirstDeep {
    
      readonly ISecondDeep secondDeep;
    
      public FirstDeep(ISecondDeep secondDeep) {
        this.secondDeep = secondDeep;
      }
    
      public String AddA(String str) {   
        var flag = this.secondDeep.SomethingToDo(str);
        ...
      }
    
    }
    

    Note that FirstDeep no longer creates a SecondDeep instance. Instead an instance is injected in the constructor.

    In your test you can create a stub for ISecondDeep where SomethingToDo always returns true:

    class SecondDeepStub : ISecondDeep {
    
      public Boolean SomethingToDo(String str) {
        return true;
      }
    
    }
    

    In the test you use the stub:

    var firstDeep = new FirstDeep(new SecondDeepStub());
    

    In production code you use the “real” SecondDeep:

    var firstDeep = new FirstDeep(new SecondDeep());
    

    Using a dependency injection container and a stubbing framework can make a lot of this easier to do.

    If you don’t want to rewrite your code you can use a framework for intercepting calls like Microsoft Moles. In the next version of Visual Studio a similar technology will be available in the Fakes Framework.

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

Sidebar

Related Questions

I have classes: class User{ String id; ArrayList<UserAttribute> attributeList=new ArrayList<UserAttribute>(); } class UserAttribute{ User
I have classes public class BlogPost { public int Id {get;set;} public string Body{get;set;}
I have classes as follows namespace Coverage { public class ClassInfo { public string
I have classes like this public class someList { public string strOne {get; set;}
I have classes structured like this: Public MustInherit Class A ' several properties End
If I have classes of Type A and B: public class A { public
I have classes like this one: class SomeObject { public function __construct($param1, $param2) {
I have classes public class FooKeyedCollection : KeyedCollection<FooType,Foo> { } public enum FooType {
I have classes that are structured like the following: public class Forecast { [Key]
I have an abstract class: abstract class AbstractDataExport { public string name; public abstract

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.