2009-11-10 11:32:54 +01:00
|
|
|
program teststompclient;
|
|
|
|
{$APPTYPE CONSOLE}
|
|
|
|
|
|
|
|
uses
|
|
|
|
MainU in 'MainU.pas',
|
|
|
|
SysUtils,
|
2010-04-02 12:44:54 +02:00
|
|
|
StompClient in '..\StompClient.pas',
|
|
|
|
StompTypes in '..\StompTypes.pas';
|
2009-11-10 11:32:54 +01:00
|
|
|
|
|
|
|
begin
|
|
|
|
try
|
2010-04-14 00:25:14 +02:00
|
|
|
Main;
|
2009-11-10 11:32:54 +01:00
|
|
|
MainWithTransaction;
|
2010-04-13 12:47:57 +02:00
|
|
|
// Test_Unicode_Chars; //Non passa
|
|
|
|
Writeln('ALL TESTS OK');
|
2009-11-10 11:32:54 +01:00
|
|
|
except
|
|
|
|
on E: Exception do
|
2010-04-13 12:47:57 +02:00
|
|
|
Writeln(E.Classname, ': ', E.message);
|
2009-11-10 11:32:54 +01:00
|
|
|
end;
|
|
|
|
|
2010-04-14 00:25:14 +02:00
|
|
|
readln;
|
2010-04-13 12:47:57 +02:00
|
|
|
end.
|