diff --git a/build/common.props b/build/common.props index 5bfd7d0..8de2e58 100644 --- a/build/common.props +++ b/build/common.props @@ -39,7 +39,7 @@ - + diff --git a/src/Foundatio.Aliyun/Foundatio.Aliyun.csproj b/src/Foundatio.Aliyun/Foundatio.Aliyun.csproj index e95b15d..9588774 100644 --- a/src/Foundatio.Aliyun/Foundatio.Aliyun.csproj +++ b/src/Foundatio.Aliyun/Foundatio.Aliyun.csproj @@ -6,7 +6,7 @@ - + diff --git a/tests/Directory.Build.props b/tests/Directory.Build.props index 407c652..99d6211 100644 --- a/tests/Directory.Build.props +++ b/tests/Directory.Build.props @@ -6,13 +6,13 @@ $(NoWarn);CS1591;NU1701 - - + + - + diff --git a/tests/Foundatio.Aliyun.Tests/Storage/AliyunStorageTests.cs b/tests/Foundatio.Aliyun.Tests/Storage/AliyunStorageTests.cs index c1f1380..f1572e7 100644 --- a/tests/Foundatio.Aliyun.Tests/Storage/AliyunStorageTests.cs +++ b/tests/Foundatio.Aliyun.Tests/Storage/AliyunStorageTests.cs @@ -33,6 +33,12 @@ public override Task CanGetFileListForSingleFolderAsync() return base.CanGetFileListForSingleFolderAsync(); } + [Fact] + public override Task CanGetFileListForSingleFileAsync() + { + return base.CanGetFileListForSingleFileAsync(); + } + [Fact] public override Task CanGetPagedFileListForSingleFolderAsync() { @@ -128,4 +134,16 @@ public override Task WillRespectStreamOffsetAsync() { return base.WillRespectStreamOffsetAsync(); } + + [Fact] + public override Task WillWriteStreamContentAsync() + { + return base.WillWriteStreamContentAsync(); + } + + [Fact] + public override Task CanSaveOverExistingStoredContent() + { + return base.CanSaveOverExistingStoredContent(); + } }