mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 23:49:45 +02:00
17 lines
149 B
ObjectPascal
17 lines
149 B
ObjectPascal
{$mode objfpc}
|
|
|
|
program testpunit;
|
|
|
|
uses punit;
|
|
|
|
Function DoTest : AnsiString;
|
|
|
|
begin
|
|
Result:='test failed';
|
|
end;
|
|
|
|
begin
|
|
RunTest(@DoTest);
|
|
end.
|
|
|