vote up 1 vote down star

I have a class that I am unit testing into with dUnit It has a number of methods some public Methods & 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 differt way to declare the PrivateMethods so that I can still unit test them but they are not Public ?

flag

2 Answers

vote up 7 vote down check

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|flag
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
I (respectfully) disagree, for reasons I elaborate here: blogs.teamb.com/craigstuntz/2009/… – Craig Stuntz Jan 13 '09 at 1:27
vote up 6 vote down

"Don't test your privates"

link|flag
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. 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
Besides my previous comment, your private methods will get implicitly tested by testing the public methods which call them! :) – Ben Daniel Jan 13 '09 at 1:02

Your Answer

Get an OpenID
or

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