How to unit test private methods in BDD / TDD?

前端 未结 12 958
攒了一身酷
攒了一身酷 2020-12-15 22:03

I am trying to program according to Behavior Driven Development, which states that no line of code should be written without writing failing unit test first.

My ques

相关标签:
12条回答
  • 2020-12-15 22:07

    We can Unit Test static and instance private methods using PrivateType and PrivateObject respectively. The following 2 articles explains these techniques

    1. Unit Test Private Static Method in C#.NET

    2. Unit Test Private Instance Method in C#.NET

    0 讨论(0)
  • 2020-12-15 22:08

    Private methods are internal implementation details. They should not be tested directly, as they will be tested indirectly via testing your public interface. If for some reason a private method is not covered when your public interface is fully tested, then the private method is not required, and it should be removed.

    Generally, it is a bad idea to bind test code to private implementation details. That couples your test to those private details, reducing your freedom to change those details at will, even if they don't affect the publicly facing interface and behavior. That increases the amount of effort required to write and maintain your unit tests, which is a negative thing. You should strive for as much coverage as possible, while only binding to the public interface.

    0 讨论(0)
  • 2020-12-15 22:09

    When you write code test-first, you write against the public interface. There are no private methods at this point.

    Then you write the code to pass the test. If any of that code gets factored into a private method, that's not important -- it should still be there only because it is used by the public interface.

    If the code isn't written test first, then -- in .net, anyway -- reflection can be used to directly prod private methods; though this is a technique of last resort.

    0 讨论(0)
  • 2020-12-15 22:11

    You should only be testing the external API of your classes, i.e. the public methods. If your tests aren't hitting code in the private methods then either you need to write more tests or refactor the class.

    The whole point of testing an API, especially one that will be distributed to third parties, is that you can change the internal structure of the class as much as you want, as long as you don't break the external contract of it's public methods.

    As you've identified, this is where BDD comes into play over 'traditional' TDD using mock classes, where every method call has to be set-up in advance for the test. I'm not an expert on either of these, hopefully someone else can answer that one better than I can.

    0 讨论(0)
  • 2020-12-15 22:13

    I agree with the point that has been made about not testing private methods per se and that tests should be written against the public API, but there is another option you haven't listed above.

    You could make the methods protected then derive from the class under test. You can expose the base protected method with a public method on the derived class, for example,

    public class TestableClassToTest : ClassToTest
    {
        public new void MethodToTest() 
        { 
            base.MethodToTest(); 
        } 
    }
    

    You might be using this Extract and Override pattern already to override virtual properties of the base class for dependency injection, in which case this may be a viable option for you.

    0 讨论(0)
  • Short answer: You don't test private methods.

    If you have programmed well, the code coverage of your tests should be testing private methods implicitly.

    0 讨论(0)
提交回复
热议问题