delphimvcframework/test/teststompclient.dpr

23 lines
400 B
ObjectPascal
Raw Normal View History

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
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;
readln;
2010-04-13 12:47:57 +02:00
end.