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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T15:16:43+00:00 2026-05-10T15:16:43+00:00

In a recent question on stubbing, many answers suggested C# interfaces or delegates for

  • 0

In a recent question on stubbing, many answers suggested C# interfaces or delegates for implementing stubs, but one answer suggested using conditional compilation, retaining static binding in the production code. This answer was modded -2 at the time of reading, so at least 2 people really thought this was a wrong answer. Perhaps misuse of DEBUG was the reason, or perhaps use of fixed value instead of more extensive validation. But I can’t help wondering:

Is the use of conditional compilation an inappropriate technique for implementing unit test stubs? Sometimes? Always?

Thanks.

Edit-add: I’d like to add an example as a though experiment:

class Foo {     public Foo() { .. }     private DateTime Now {        get { #if UNITTEST_Foo         return Stub_DateTime.Now; #else         return DateTime.Now; #endif       }     }     // .. rest of Foo members } 

comparing to

interface IDateTimeStrategy {      DateTime Now { get; } } class ProductionDateTimeStrategy : IDateTimeStrategy {   public DateTime Now { get { return DateTime.Now; } } } class Foo {     public Foo() : Foo(new ProductionDateTimeStrategy()) {}     public Foo(IDateTimeStrategy s) { datetimeStrategy = s; .. }     private IDateTime_Strategy datetimeStrategy;     private DateTime Now { get { return datetimeStrategy.Now; } } } 

Which allows the outgoing dependency on ‘DateTime.Now’ to be stubbed through a C# interface. However, we’ve now added a dynamic dispatch call where static would suffice, the object is larger even in the production version, and we’ve added a new failure path for Foo’s constructor (allocation can fail).

Am I worrying about nothing here? Thanks for the feedback so far!

  • 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. 2026-05-10T15:16:44+00:00Added an answer on May 10, 2026 at 3:16 pm

    Try to keep production code separate from test code. Maintain different folder hierarchies.. different solutions/projects.

    Unless.. you’re in the world of legacy C++ Code. Here anything goes.. if conditional blocks help you get some of the code testable and you see a benefit.. By all means do it. But try to not let it get messier than the initial state. Clearly comment and demarcate conditional blocks. Proceed with caution. It is a valid technique for getting legacy code under a test harness.

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

Sidebar

Related Questions

A recent question came up about using String.Format(). Part of my answer included a
This recent question about sorting randomly using C# got me thinking about the way
As just stated in a recent question and answer , you can't inherit from
In this answer to a recent question , I was advised to be wary
There is another recent Project Euler question but I think this is a bit
I was faced this question while one of recent interview : class1 { virtual
A recent question about string literals in .NET caught my eye. I know that
A recent question about StyleCop alerted me to the use of tools to enforce
Following on from my recent question on Large, Complex Objects as a Web Service
Following on from my recent question regarding parsing XML files in Java I have

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.