Files
lazarus-ccr/components/fpexif/tests/unittest/fpExifTests_Delphi.dpr
wp_xxyyzz e03afa62f1 fpexif: Initial commit of units and tests
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6080 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2017-12-02 17:12:00 +00:00

31 lines
759 B
ObjectPascal

program fpExifTests_Delphi;
uses
TestFramework,
Forms,
GUITestRunner,
TextTestRunner,
fpeexifdata in '..\..\fpeexifdata.pas',
fpeExifReadWrite in '..\..\fpeexifreadwrite.pas',
fpeGlobal in '..\..\fpeglobal.pas',
fpeIptcData in '..\..\fpeiptcdata.pas',
fpeIptcReadWrite in '..\..\fpeiptcreadwrite.pas',
fpeMakerNote in '..\..\fpemakernote.pas',
fpeMetadata in '..\..\fpemetadata.pas',
fpeStrConsts in '..\..\fpestrconsts.pas',
fpeTags in '..\..\fpetags.pas',
fpeUtils in '..\..\fpeUtils.pas',
fetExifBE in 'common\fetexifbe.pas',
fetExifLE in 'common\fetexifle.pas',
fetIptc in 'common\fetiptc.pas',
fetUtils in 'common\fetutils.pas';
{$R *.res}
begin
Application.Initialize;
GUITestRunner.RunRegisteredTests;
end.