delphimvcframework/unittests/DMVCFrameworkTests/DMVCFrameworkTests.dpr

32 lines
722 B
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',
TestControllersU in 'TestControllersU.pas';
{$R *.RES}
begin
DUnitTestRunner.RunRegisteredTests;
end.