show/hide this revision's text 2 edited title

dUnit Testing in Delphi (how to test private methods)

show/hide this revision's text 1

dUnit Testing in Delphi

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 ?