File tree 4 files changed +12
-7
lines changed
4 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -65,4 +65,7 @@ __recovery/
65
65
# Castalia statistics file (since XE7 Castalia is distributed with Delphi)
66
66
* .stat
67
67
# Boss Dependency Manager for Delphi and Lazarus (Windows)
68
- modules /
68
+ modules /
69
+
70
+ # Project specific files
71
+ /DUnitX /Win64 /Debug /FB4D.IntegrationTests.ini
Original file line number Diff line number Diff line change @@ -64,11 +64,14 @@ procedure UT_FirebaseStorage.TestSynchronousUploadDownload;
64
64
const
65
65
cObjName = ' TestObj.ini' ;
66
66
var
67
+ FileName: string;
67
68
FileStream: TFileStream;
68
69
MemoryStream: TMemoryStream;
69
70
Obj, Obj2, Obj3: IStorageObject;
70
71
begin
71
- FileStream := TFileStream.Create(ChangeFileExt(ParamStr(0 ), ' .ini' ), fmOpenRead);
72
+ FileName := ChangeFileExt(ParamStr(0 ), ' .ini' );
73
+ Assert.IsTrue(FileExists(FileName), ' File missing: ' + Filename + ' -> Restart once test app' );
74
+ FileStream := TFileStream.Create(FileName, fmOpenRead);
72
75
try
73
76
Obj := fStorage.UploadSynchronousFromStream(FileStream, cObjName, ctTEXT_PLAIN);
74
77
finally
Original file line number Diff line number Diff line change 124
124
<DCC_UnitSearchPath>..\..\source;$(DCC_UnitSearchPath)</DCC_UnitSearchPath>
125
125
<DCC_Define>$(FrameworkType);$(DCC_Define)</DCC_Define>
126
126
<DCC_DUPLICATE_CTOR_DTOR>false</DCC_DUPLICATE_CTOR_DTOR>
127
+ <DCC_ExeOutput>.\$(Platform)\$(Config)</DCC_ExeOutput>
128
+ <DCC_DcuOutput>.\$(Platform)\$(Config)</DCC_DcuOutput>
127
129
</PropertyGroup>
128
130
<PropertyGroup Condition="'$(Base_Android)'!=''">
129
131
<VerInfo_Keys>package=com.embarcadero.$(MSBuildProjectName);label=$(MSBuildProjectName);versionCode=1;versionName=1.0.0;persistent=False;restoreAnyVersion=False;installLocation=auto;largeHeap=False;theme=TitleBar;hardwareAccelerated=true;apiKey=</VerInfo_Keys>
305
307
<Source>
306
308
<Source Name="MainSource">FSObj2Doc.dpr</Source>
307
309
</Source>
308
- <Excluded_Packages>
309
- <Excluded_Packages Name="$(BDSBIN)\dcloffice2k290.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages>
310
- <Excluded_Packages Name="$(BDSBIN)\dclofficexp290.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages>
311
- </Excluded_Packages>
310
+ <Excluded_Packages/>
312
311
</Delphi.Personality>
313
312
<Platforms>
314
313
<Platform value="Android">False</Platform>
Original file line number Diff line number Diff line change 2
2
cLibMajorVersion = 1 ;
3
3
cLibMinorVersion = 7 ;
4
4
cLibReleaseVersion = 2 ;
5
- cLibBuildVersion = 668 ; // Number of commits since start in GitHub
5
+ cLibBuildVersion = 671 ; // Number of commits since start in GitHub
6
6
// git rev-list --count head
You can’t perform that action at this time.
0 commit comments