summaryrefslogtreecommitdiff
path: root/prototypes/miglayout/unittests/fpcunit_miglayout.lpr
diff options
context:
space:
mode:
Diffstat (limited to 'prototypes/miglayout/unittests/fpcunit_miglayout.lpr')
-rw-r--r--prototypes/miglayout/unittests/fpcunit_miglayout.lpr25
1 files changed, 25 insertions, 0 deletions
diff --git a/prototypes/miglayout/unittests/fpcunit_miglayout.lpr b/prototypes/miglayout/unittests/fpcunit_miglayout.lpr
new file mode 100644
index 00000000..486c9cdf
--- /dev/null
+++ b/prototypes/miglayout/unittests/fpcunit_miglayout.lpr
@@ -0,0 +1,25 @@
+program fpcunit_miglayout;
+
+{$mode objfpc}{$H+}
+
+uses
+ Classes, consoletestrunner, constraintparser_tests, gui_mig_constraintparser;
+
+type
+
+ { TLazTestRunner }
+
+ TMyTestRunner = class(TTestRunner)
+ protected
+ // override the protected methods of TTestRunner to customize its behavior
+ end;
+
+var
+ Application: TMyTestRunner;
+
+begin
+ Application := TMyTestRunner.Create(nil);
+ Application.Initialize;
+ Application.Run;
+ Application.Free;
+end.