program Presupuestos_Test; { Delphi DUnit Test Project ------------------------- This project contains the DUnit test framework and the GUI/Console test runners. Add "CONSOLE_TESTRUNNER" to the conditional defines entry in the project options to use the console test runner. Otherwise the GUI test runner will be used by default. } {$IFDEF CONSOLE_TESTRUNNER} {$APPTYPE CONSOLE} {$ENDIF} uses ExceptionLog, Forms, TestFramework, GUITestRunner, TextTestRunner, uPresupuestosViewRegister, uContactosViewRegister, uPluginPresupuestos_Test in 'uPluginPresupuestos_Test.pas', uHostMainForm in 'uHostMainForm.pas' {HostMainForm}, uPresupuestosController_Test in 'uPresupuestosController_Test.pas', uDataModulePresupuestos_Test in 'uDataModulePresupuestos_Test.pas'; {$R *.RES} begin Application.Initialize; Application.CreateForm(THostMainForm, HostMainForm); uPresupuestosViewRegister.RegisterViews; uContactosViewRegister.RegisterViews; Application.Run; Application.Terminate; end.