From b356430d270d8cf2f2afe217d1e9f79630005ace Mon Sep 17 00:00:00 2001 From: inoussa Date: Fri, 6 Jun 2008 15:22:22 +0000 Subject: [PATCH] Add fpc gui test suite git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@473 8e941d3f-bd1b-0410-a28a-d453659cc2b4 --- .../tests/test_suite/wst_test_suite_gui.lpi | 212 ++++++++++++++++++ .../tests/test_suite/wst_test_suite_gui.lpr | 26 +++ 2 files changed, 238 insertions(+) create mode 100644 wst/trunk/tests/test_suite/wst_test_suite_gui.lpi create mode 100644 wst/trunk/tests/test_suite/wst_test_suite_gui.lpr diff --git a/wst/trunk/tests/test_suite/wst_test_suite_gui.lpi b/wst/trunk/tests/test_suite/wst_test_suite_gui.lpi new file mode 100644 index 000000000..881674f9b --- /dev/null +++ b/wst/trunk/tests/test_suite/wst_test_suite_gui.lpi @@ -0,0 +1,212 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/wst/trunk/tests/test_suite/wst_test_suite_gui.lpr b/wst/trunk/tests/test_suite/wst_test_suite_gui.lpr new file mode 100644 index 000000000..a03ae43c1 --- /dev/null +++ b/wst/trunk/tests/test_suite/wst_test_suite_gui.lpr @@ -0,0 +1,26 @@ +program wst_test_suite_gui; + +{$mode objfpc}{$H+} + +uses + {$IFDEF UNIX}{$IFDEF UseCThreads} + cthreads, + {$ENDIF}{$ENDIF} + Interfaces, Forms, GuiTestRunner, + TestFormatter_unit, testmetadata_unit, + server_service_soap, soap_formatter, base_binary_formatter, + base_service_intf, base_soap_formatter, binary_formatter, binary_streamer, + server_binary_formatter, metadata_repository, + metadata_generator, parserdefs, server_service_intf, metadata_wsdl, + test_parserdef, base_xmlrpc_formatter, wst_fpc_xml, test_utilities, + server_service_xmlrpc, test_parsers, wsdl_generator, xsd_generator, + xsd_consts, base_json_formatter, wsdl_parser, test_support, basex_encode, + test_basex_encode, json_formatter, server_service_json, test_json, + test_suite_utils, test_generators; + +begin + Application.Initialize; + Application.CreateForm(TGuiTestRunner, TestRunner); + Application.Run; +end. +