2008-06-06 15:22:22 +00:00
|
|
|
program wst_test_suite_gui;
|
|
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
|
|
uses
|
2008-09-21 16:56:14 +00:00
|
|
|
{$IFDEF UNIX}
|
2008-06-06 15:22:22 +00:00
|
|
|
cthreads,
|
2008-09-21 16:56:14 +00:00
|
|
|
{$ENDIF}
|
2008-06-06 15:22:22 +00:00
|
|
|
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,
|
2008-07-03 16:27:23 +00:00
|
|
|
metadata_generator, server_service_intf, metadata_wsdl,
|
|
|
|
|
base_xmlrpc_formatter, wst_fpc_xml, test_utilities,
|
2008-06-06 15:22:22 +00:00
|
|
|
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,
|
2008-08-01 21:38:55 +00:00
|
|
|
test_suite_utils, test_generators, fpcunittestrunner, test_std_cursors,
|
2008-09-10 01:23:29 +00:00
|
|
|
test_rtti_filter, rtti_filters, wst_cursors, test_wst_cursors, test_registry, test_soap_specific,
|
|
|
|
|
test_generators_runtime;
|
2008-06-06 15:22:22 +00:00
|
|
|
|
|
|
|
|
begin
|
|
|
|
|
Application.Initialize;
|
|
|
|
|
Application.CreateForm(TGuiTestRunner, TestRunner);
|
|
|
|
|
Application.Run;
|
|
|
|
|
end.
|
|
|
|
|
|