mirror of
				https://gitlab.com/freepascal.org/lazarus/lazarus.git
				synced 2025-11-04 05:39:34 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			369 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			369 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
program FpTest;
 | 
						|
 | 
						|
{$mode objfpc}{$H+}
 | 
						|
 | 
						|
uses
 | 
						|
  Interfaces, Forms, GuiTestRunner, TestTypeInfo, TestHelperClasses, TestDwarfSetup1,
 | 
						|
  TestDwarfSetupBasic, TestDwarfVarious, testdwarfsetupArray, TestMemManager, TestPascalParser,
 | 
						|
  TestErrorHandler;
 | 
						|
 | 
						|
{$R *.res}
 | 
						|
 | 
						|
begin
 | 
						|
  Application.Initialize;
 | 
						|
  Application.CreateForm(TGuiTestRunner, TestRunner);
 | 
						|
  Application.Run;
 | 
						|
end.
 | 
						|
 |