dUnit Testing in Delphi (how to test private methods) - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T18:43:19Zhttp://stackoverflow.com/feeds/question/422379http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/422379/dunit-testing-in-delphi-how-to-test-private-methods1dUnit Testing in Delphi (how to test private methods) Charles Faiga2009-01-07T22:10:49Z2009-01-08T09:33:06Z
<p>I have a class that I am unit testing into with dUnit
It has a number of methods some public Methods & Private Methods </p>
<pre><code>type
TAuth = class(TDataModule)
private
procedure PrivateMethod;
public
procedure PublicMethod;
end;
</code></pre>
<p>In order to write a unit test for this class I have to make all the methods public.</p>
<p>Is there a differt way to declare the PrivateMethods so that I can still unit test them but they are not Public ? </p>
http://stackoverflow.com/questions/422379/dunit-testing-in-delphi-how-to-test-private-methods/422400#4224007Answer by Craig Stuntz for dUnit Testing in Delphi (how to test private methods) Craig Stuntz2009-01-07T22:16:46Z2009-01-07T22:30:27Z<p>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:</p>
<pre><code>type
TAuth = class(TDataModule)
protected
procedure MethodIWantToUnitTest;
public
procedure PublicMethod;
end;
</code></pre>
<p>Now you can subtype it for your unit test:</p>
<pre><code>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;
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/422379/dunit-testing-in-delphi-how-to-test-private-methods/423599#4235996Answer by Vegar for dUnit Testing in Delphi (how to test private methods) Vegar2009-01-08T08:42:09Z2009-01-08T08:42:09Z<p><a href="http://delphixtreme.com/wordpress/?p=19" rel="nofollow">"Don't test your privates"</a></p>