I have a class that I am unit testing into with DUnit. It has a number of methods some public methods and private methods.

type
  TAuth = class(TDataModule)
  private
    procedure PrivateMethod;
  public
    procedure PublicMethod;
  end;

In order to write a unit test for this class I have to make all the methods public.

Is there a different way to declare the private methods so that I can still test them but they are not public?

link|improve this question

feedback

6 Answers

up vote 13 down vote accepted

You don't need to make them public. Protected will do. Then you can subtype the class for unit testing and surface the protected methods. Example:

type
  TAuth = class(TDataModule)
  protected
    procedure MethodIWantToUnitTest;
  public
    procedure PublicMethod;
  end;

Now you can subtype it for your unit test:

interface

uses
  TestFramework, Classes, AuthDM;

type
  // Test methods for class TAuthDM
  TestAuthDM = class(TTestCase)
     // stuff
  end;

  TAuthDMTester = class(TAuthDM)
  public
    procedure MethodIWantToUnitTestMadePublic;
  end;

implementation

procedure TAuthDMTester.MethodIWantToUnitTestMadePublic;
begin
  MethodIWantToUnitTest;
end;

However, if the methods you want to unit test are doing things so intimately with the data module that it is not safe to have them anything but private, then you should really consider refactoring the methods in order to segregate the code which needs to be unit tested and the code which accesses the innards of the data module.

link|improve this answer
2  
Yeah without sounding too negative I don't agree with making your private methods protected for the sake of unit testing as they are private for a reason. I think you should be testing the public interface. It's the public methods which are going to be using your private methods anyway. – Ben Daniel Jan 13 '09 at 0:50
1  
I (respectfully) disagree, for reasons I elaborate here: blogs.teamb.com/craigstuntz/2009/01/12/37919 – Craig Stuntz Jan 13 '09 at 1:27
/Ben: private and protected are different isibilities and each has it's merits and disadvantages; If you want to e able to test the private methods, making those protected is simply a crude way of making them accessible to your testing framework (DUnit). What's next: private is evil, and strict private even more? I agree with Ben: unit testing is for testing your contract (eg the public interface with it's explicit (interface) and explicit (usage) rules). If the private members need testing, you should make that interface formal (part of an interface perhaps, inner class etc). – Ritsaert Hornstra Mar 15 '10 at 0:51
feedback

"Don't test your privates"

link|improve this answer
1  
I agree strongly with this. If its private, then it shouldn't be accessed from outside objects there for shouldn't be tested beyond its interaction with other methods which ARE exposed to the outside. If you feel you need to test the private method then should it be private in the first place? – skamradt Jan 8 '09 at 15:36
1  
+1. I also strongly agree. By making your private methods protected, your opening up your object wide open for any descendant class to use your base class as you didn't intend it to. – Ben Daniel Jan 13 '09 at 0:55
1  
@Ben: this is like saying "by withdrawing some money at an ATM I will also implicitly test its internal security software" ;) – mjn May 3 '11 at 7:38
1  
If you can't get 100% code coverage through your public interface, you got to have dead code hanging around. There is no reason for testing dead code. – Vegar May 4 '11 at 19:11
1  
I disagree. If you have a complex private method it should be tested. You shouldn't need to create a complex test setup just because your language make it difficult to test private methods. All this boohoo about testing private is just it is really difficult to do in Java. – neves Sep 13 '11 at 20:26
show 13 more comments
feedback

I recommend the "XUnit Test Patterns" book by Gerard Meszaros:

Test-Specific Subclass

Question: How can we make code testable when we need to access private state of the SUT?

Answer: Add methods that expose the state or behavior needed by the test to a subclass of the SUT.

... If the system under test (SUT) was not designed specifically to be testable, we may find that the test cannot get access to state that it must initialize or verify at some point in the test.

The article also explains when to use it and which risks it carries.

link|improve this answer
feedback

Put the DUnit code within your unit. You can then access anything you like.

link|improve this answer
3  
... by using conditional directives only – too Jun 25 '10 at 10:45
feedback

It is a little hacky, but I like to use this conditional compilation directive:

  {$IfNDef TEST}
  private
  {$EndIf}

Your unit test project should define TEST in project → conditional defines.

Without a visibility specification, they become published. Beware: if the private visibility isn't the first one, it will get the previous definition.

link|improve this answer
feedback

In general, when I get in this situation, I often realize that I'm violating the single responsibility principle. Of course I know nothing about your specific case, but MAYBE, that private methods should be in their own class. The TAuth would than have a reference to this new class in it's private section.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.