delphimvcframework/samples/serversideviews_lua/lua4delphi/unittests/LuaBindingUnitTests.dpr

28 lines
747 B
ObjectPascal
Raw Normal View History

2021-12-30 10:21:38 +01:00
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.