mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 16:25:54 +01:00
28 lines
747 B
ObjectPascal
28 lines
747 B
ObjectPascal
|
program LuaBindingUnitTests;
|
||
|
|
||
|
{$IFDEF CONSOLE_TESTRUNNER}
|
||
|
{$APPTYPE CONSOLE}
|
||
|
{$ENDIF}
|
||
|
|
||
|
|
||
|
uses
|
||
|
DUnitTestRunner,
|
||
|
TestLuaWrapper in 'TestLuaWrapper.pas',
|
||
|
TestObjects in 'TestObjects.pas',
|
||
|
TestLuaEmbeddedTextFilter in 'TestLuaEmbeddedTextFilter.pas',
|
||
|
LuaBind.Filters.Text in '..\LuaBind.Filters.Text.pas',
|
||
|
LuaBind.Intf in '..\LuaBind.Intf.pas',
|
||
|
LuaBind.CustomType.DataSet in '..\LuaBind.CustomType.DataSet.pas',
|
||
|
LuaBind.CustomType.PODO in '..\LuaBind.CustomType.PODO.pas',
|
||
|
LuaBind.CustomType.UserType in '..\LuaBind.CustomType.UserType.pas',
|
||
|
LuaBind in '..\LuaBind.pas',
|
||
|
LuaBind.DelphiObjects in '..\LuaBind.DelphiObjects.pas';
|
||
|
|
||
|
{$R *.RES}
|
||
|
|
||
|
|
||
|
begin
|
||
|
ReportMemoryLeaksOnShutdown := True;
|
||
|
DUnitTestRunner.RunRegisteredTests;
|
||
|
end.
|