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.
19 lines
363 B
19 lines
363 B
program DelphiLuaUnitTests; |
|
|
|
uses |
|
Forms, |
|
DUnitTestRunner, |
|
TestAPI in 'source\TestAPI.pas', |
|
Lua.API in '..\Lua.API.pas', |
|
Lua in '..\Lua.pas', |
|
TestWrapper in 'source\TestWrapper.pas'; |
|
|
|
{$R *.RES} |
|
|
|
begin |
|
ReportMemoryLeaksOnShutdown := True; |
|
|
|
Application.Title := 'DelphiLua Unit Tests'; |
|
DUnitTestRunner.RunRegisteredTests; |
|
end. |
|
|
|
|