Jump to content
Sign in to follow this  
bernhard_LA

install DUNITX

Recommended Posts

I use DELPHI 10.3,   my  current - default installation of DUNITX seems to be incomplete, because I need  to uncomment several units? 

what is the next step

 

a)  ignore  because  some test projects are working ? 

b)  install again from git, any instruction how to  update  installation 

 

 

 

program N_TESTS_VCLGUIAPP;

{$R *.res}
uses
  Vcl.Forms,
  System.SysUtils,
 // DUnitX.Examples.General,
 // DUnitX.Loggers.Text,
  DUnitX.Loggers.XML.NUnit,
 // DUnitX.Loggers.XML.xUnit,
 // DUnitX.MacOS.Console,
  DUnitX.Test,
  DUnitX.TestFixture,
  DUnitX.TestFramework,
  DUnitX.TestResult,
  DUnitX.RunResults,
  DUnitX.TestRunner,
  DUnitX.Utils,
//  DUnitX.Utils.XML,
  DUnitX.WeakReference,
  DUnitX.Windows.Console,
//  DUnitX.StackTrace.EurekaLog7,
//  DUnitX.Examples.EqualityAsserts,
  DUnitX.Loggers.Null,
  DUnitX.MemoryLeakMonitor.Default,
  DUnitX.AutoDetect.Console,
  DUnitX.ConsoleWriter.Base,
//  DUnitX.DUnitCompatibility,
  DUnitX.Extensibility,
  DUnitX.Extensibility.PluginManager,
  DUnitX.FixtureProviderPlugin,
  DUnitX.FixtureResult,
  DUnitX.Generics,
  DUnitX.InternalInterfaces,
  DUnitX.IoC,
  DUnitX.Loggers.Console,
  DUnitX.CommandLine.OptionDef,
  DUnitX.CommandLine.Options,
  DUnitX.CommandLine.Parser,
  DUnitX.OptionsDefinition,
  DUnitX.Banner,
  DUnitX.FilterBuilder,
  DUnitX.Filters,
  DUnitX.CategoryExpression,
  DUnitX.TestNameParser,
  DUnitX.Loggers.GUI.VCL,
 // DUnitX.Examples.AssertFailureCompare,
  DUnitX.Timeout,
  DUnitX.Exceptions,
  DUnitX.ResStrs,
 // DUnitX.Examples.UITest,



.........



;


begin

  Application.Initialize;
  Application.Title := 'DUnitX';
  Application.CreateForm(TGUIVCLTestRunner, GUIVCLTestRunner);
  Application.Run;


end.

 

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  
×