fpc/packages/rtl-objpas/tests/testrunner.rtlobjpas.pp
svenbarth 3e5f8af01d + add RTTI unit from Joost's Attribute branch
* adjust unit to work without attributes
* adjust unit to work without unit list (TRttiContext.GetTypes is disabled due to this)
+ add ShortString support (due to an intermediary test I had done in $H-)
+ add unit test from Joost's Attribute branch
* adjust unit test accordingly (no attributes, no TRttiContext.GetTypes)
+ add ShortString tests
+ add testrunner for RTL-ObjPas tests using the new simpletestrunner

git-svn-id: trunk@35096 -
2016-12-09 20:45:46 +00:00

19 lines
291 B
ObjectPascal

program testrunner.rtlobjpas;
{$mode objfpc}{$H+}
uses
simpletestrunner,
tests.rtti;
var
Application: TTestRunner;
begin
Application := TTestRunner.Create(nil);
Application.Initialize;
Application.Title := 'RTL-ObjPas unit tests';
Application.Run;
Application.Free;
end.