AlonsoYSal_FactuGES2/Source/Modulos/Presupuestos de cliente/Test/Presupuestos_Test.dpr
2019-11-18 10:55:59 +00:00

41 lines
1.1 KiB
ObjectPascal

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.