• Home
  • About
    • Ryan Potts photo

      Ryan Potts

      My blog regarding all things Delphi and Exercism.io

    • Learn More
    • Email
    • Twitter
    • Github
    • StackOverflow
    • Keybase
  • Posts
    • All Posts
    • All Tags

DUnitX Console Logger Quiet Mode Option

08 Apr 2017

Reading time ~1 minute

DUnitX is an excellent open source testing framework which I am utilizing with the Delphi track at Exercism.io. DUnitX has a Console Logger that has an optional Quiet Mode. Typically Quiet Mode is active with this statement in your project .dpr file:

logger := TDUnitXConsoleLogger.Create(true);

If you like to see a more verbose output to your console screen simply change true to false or just omit it. The default state is false.



DelphiDUnitXExercism Share Tweet +1