You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
363 B

9 years ago
program DelphiLuaUnitTests;
uses
Forms,
9 years ago
DUnitTestRunner,
TestAPI in 'source\TestAPI.pas',
Lua.API in '..\Lua.API.pas',
9 years ago
Lua in '..\Lua.pas',
TestWrapper in 'source\TestWrapper.pas';
{$R *.RES}
begin
ReportMemoryLeaksOnShutdown := True;
Application.Title := 'DelphiLua Unit Tests';
9 years ago
DUnitTestRunner.RunRegisteredTests;
end.