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)
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.