|
| 1 | +package WebMocks; |
| 2 | + |
| 3 | +{$R *.res} |
| 4 | +{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} |
| 5 | +{$ALIGN 8} |
| 6 | +{$ASSERTIONS ON} |
| 7 | +{$BOOLEVAL OFF} |
| 8 | +{$DEBUGINFO OFF} |
| 9 | +{$EXTENDEDSYNTAX ON} |
| 10 | +{$IMPORTEDDATA ON} |
| 11 | +{$IOCHECKS ON} |
| 12 | +{$LOCALSYMBOLS ON} |
| 13 | +{$LONGSTRINGS ON} |
| 14 | +{$OPENSTRINGS ON} |
| 15 | +{$OPTIMIZATION OFF} |
| 16 | +{$OVERFLOWCHECKS OFF} |
| 17 | +{$RANGECHECKS OFF} |
| 18 | +{$REFERENCEINFO ON} |
| 19 | +{$SAFEDIVIDE OFF} |
| 20 | +{$STACKFRAMES ON} |
| 21 | +{$TYPEDADDRESS OFF} |
| 22 | +{$VARSTRINGCHECKS ON} |
| 23 | +{$WRITEABLECONST OFF} |
| 24 | +{$MINENUMSIZE 1} |
| 25 | +{$IMAGEBASE $400000} |
| 26 | +{$DEFINE DEBUG} |
| 27 | +{$ENDIF IMPLICITBUILDING} |
| 28 | +{$DESCRIPTION 'WebMocks for Delphi'} |
| 29 | +{$LIBSUFFIX '.Delphi10Sydney'} |
| 30 | +{$RUNONLY} |
| 31 | +{$IMPLICITBUILD OFF} |
| 32 | + |
| 33 | +requires |
| 34 | + rtl, |
| 35 | + IndySystem, |
| 36 | + IndyProtocols, |
| 37 | + IndyCore; |
| 38 | + |
| 39 | +contains |
| 40 | + Delphi.WebMock.Assertion in '..\..\Source\Delphi.WebMock.Assertion.pas', |
| 41 | + Delphi.WebMock.Dynamic.RequestStub in '..\..\Source\Delphi.WebMock.Dynamic.RequestStub.pas', |
| 42 | + Delphi.WebMock.HTTP.Messages in '..\..\Source\Delphi.WebMock.HTTP.Messages.pas', |
| 43 | + Delphi.WebMock.HTTP.Request in '..\..\Source\Delphi.WebMock.HTTP.Request.pas', |
| 44 | + Delphi.WebMock.HTTP.RequestMatcher in '..\..\Source\Delphi.WebMock.HTTP.RequestMatcher.pas', |
| 45 | + Delphi.WebMock in '..\..\Source\Delphi.WebMock.pas', |
| 46 | + Delphi.WebMock.RequestStub in '..\..\Source\Delphi.WebMock.RequestStub.pas', |
| 47 | + Delphi.WebMock.Response in '..\..\Source\Delphi.WebMock.Response.pas', |
| 48 | + Delphi.WebMock.ResponseBodySource in '..\..\Source\Delphi.WebMock.ResponseBodySource.pas', |
| 49 | + Delphi.WebMock.ResponseContentFile in '..\..\Source\Delphi.WebMock.ResponseContentFile.pas', |
| 50 | + Delphi.WebMock.ResponseContentString in '..\..\Source\Delphi.WebMock.ResponseContentString.pas', |
| 51 | + Delphi.WebMock.ResponseStatus in '..\..\Source\Delphi.WebMock.ResponseStatus.pas', |
| 52 | + Delphi.WebMock.Static.RequestStub in '..\..\Source\Delphi.WebMock.Static.RequestStub.pas', |
| 53 | + Delphi.WebMock.StringAnyMatcher in '..\..\Source\Delphi.WebMock.StringAnyMatcher.pas', |
| 54 | + Delphi.WebMock.StringMatcher in '..\..\Source\Delphi.WebMock.StringMatcher.pas', |
| 55 | + Delphi.WebMock.StringRegExMatcher in '..\..\Source\Delphi.WebMock.StringRegExMatcher.pas', |
| 56 | + Delphi.WebMock.StringWildcardMatcher in '..\..\Source\Delphi.WebMock.StringWildcardMatcher.pas'; |
| 57 | + |
| 58 | +end. |
0 commit comments