mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-28 19:02:54 +02:00
25 lines
708 B
ObjectPascal
25 lines
708 B
ObjectPascal
program SynTest;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Interfaces, Forms, GuiTestRunner, TestBase, TestBasicSynEdit, TestNavigation,
|
|
TestSynSelection, TestSynMultiCaret, TestBlockIndent, TestBookMarks, TestSearch,
|
|
TestSynBeautifier, TestTrimSpace, TestSyncroEdit, TestSynTextArea,
|
|
TestHighlightPas, TestHighlightXml, TestHighlightMulti, TestMarkupwordGroup,
|
|
TestMarkupHighAll, TestFoldedView, TestSynSharedEdits, TestHighlighterLfm,
|
|
TestNestedFoldsList, TestMarkupIfDef, testPaintColorMerging,
|
|
TestMarkupFoldColoring;
|
|
|
|
{$IFDEF WINDOWS}{ $R SynTest.rc}{$ENDIF}
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
{ $I SynTest.lrs}
|
|
Application.Initialize;
|
|
Application.CreateForm(TGuiTestRunner, TestRunner);
|
|
Application.Run;
|
|
end.
|
|
|