delphimvcframework/unittests/DMVCFrameworkTests/DMVCFrameworkTests.dpr

39 lines
1.2 KiB
ObjectPascal
Raw Normal View History

2013-10-30 01:09:09 +01:00
program DMVCFrameworkTests;
{
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
DUnitTestRunner,
FrameworkTestsU in 'FrameworkTestsU.pas',
LiveServerTestU in 'LiveServerTestU.pas',
MessagingExtensionsTestU in 'MessagingExtensionsTestU.pas',
2013-11-11 12:23:49 +01:00
TestControllersU in 'TestControllersU.pas',
2013-11-18 00:44:40 +01:00
MVCFramework.RESTClient in '..\..\sources\MVCFramework.RESTClient.pas',
BusinessObjectsU in '..\..\samples\commons\BusinessObjectsU.pas',
ObjectsMappers in '..\..\sources\ObjectsMappers.pas',
2013-12-04 12:08:32 +01:00
BOs in 'BOs.pas',
2014-04-02 20:28:53 +02:00
RTTIUtilsU in '..\..\sources\RTTIUtilsU.pas',
TestServerControllerU in '..\TestServer\TestServerControllerU.pas',
2015-01-14 14:13:48 +01:00
RESTAdapterTestsU in 'RESTAdapterTestsU.pas',
MVCFramework.RESTAdapter in '..\..\sources\MVCFramework.RESTAdapter.pas';
2013-10-30 01:09:09 +01:00
{$R *.RES}
begin
ReportMemoryLeaksOnShutdown := true;
2013-10-30 01:09:09 +01:00
DUnitTestRunner.RunRegisteredTests;
end.