Is it important to unit test a constructor?

前端 未结 15 1561
一生所求
一生所求 2020-12-08 01:54

Ought I to unit test constructors? Say I have a constructor like this:

IMapinfoWrapper wrapper;
public SystemInfo(IMapinfoWrapper mapinfoWrapper)
{
    this.         


        
相关标签:
15条回答
  • 2020-12-08 02:11

    No. Its functionality will be tested by every other unit test on the class.

    0 讨论(0)
  • 2020-12-08 02:12

    You absolutely should test the constructor. If you have a default constructor, you should test that it can be called. What if later on the class is changed--perhaps it becomes a singleton or the default constructor is removed in favor of one requiring parameters? The test should fail in that case to alert that change (so that the class or the test can be fixed to meet the new requirement).

    The presence of a default constructor is a requirement that should have a test. Even if all the constructor does is set private members that will be tested elsewhere, the fact that there is a parameterless constructor should be tested.

    0 讨论(0)
  • 2020-12-08 02:12

    Not unless you're writing a compiler, because you would only be testing that the compiler could generate code to do assignments, which is normally pointless.

    Now, in a more usual situation, if you want to do something else with the wrapper, then maybe there's a point. For example, you could throw an ArgumentNullException if you tried to pass a null, and in theory, that could have a unit test. Even then, the value of the test is pretty minimal.

    Personally, I almost never explicitly test constructors. If they are complicated enough to need tests, I tend to feel the code is a little on the smelly side.

    0 讨论(0)
  • 2020-12-08 02:14

    Unit testing is about testing the public states, behaviors, and interactions of your objects.

    If you simply set a private field in your constructor, what is there to test?

    Don't bother unit-testing your simple accessors and mutators. That's just silly, and it doesn't help anyone.

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

    I am testing constructors when they contain logic - e.g. validation or conditional setting a private state. Validation errors end up in an exception thrown from the constructor. Successful execution ends up in a creation of object which exhibits specific behavior depending on the state which was set in the constructor. In either way, it requires testing. But constructor tests are boring because they all look the same - invoke the constructor, make an assertion. Test method declarations often take more space than the whole testing logic... So I wrote a simple testing library which helps write declarative tests for the constructors: How to Easily Test Validation Logic in Constructors in C#

    Here is an example in which I am trying seven test cases on a constructor of one class:

    [TestMethod]
    public void Constructor_FullTest()
    {
    
        IDrawingContext context = new Mock<IDrawingContext>().Object; 
    
        ConstructorTests<Frame>
            .For(typeof(int), typeof(int), typeof(IDrawingContext))
            .Fail(new object[] { -3, 5, context }, typeof(ArgumentException), "Negative  length")
            .Fail(new object[] { 0, 5, context }, typeof(ArgumentException), "Zero length")
            .Fail(new object[] { 5, -3, context }, typeof(ArgumentException), "Negative width")
            .Fail(new object[] { 5, 0, context }, typeof(ArgumentException), "Zero width")
            .Fail(new object[] { 5, 5, null }, typeof(ArgumentNullException), "Null drawing context")
            .Succeed(new object[] { 1, 1, context }, "Small positive length and width")
            .Succeed(new object[] { 3, 4, context }, "Larger positive length and width")
            .Assert();
    
    }
    

    In this way, I can test all the relevant cases for my constructor without typing much.

    0 讨论(0)
  • 2020-12-08 02:18

    In many FDA-regulated environments, more critical code must be 100% tested...including the construction of classes. So, the testing of constructors is sometimes necessary regardless of reasoning to or not to test them. Also, companies that use static analysis tools will need to make sure ALL data members of a class are properly initialized in order to not have errors although the code may run smoothly and free of errors. Usually data member initialization is done in the constructor...just food for thought.

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