Skip to content

Commit

Permalink
Added more storage tests
Browse files Browse the repository at this point in the history
  • Loading branch information
niemyjski committed Sep 26, 2024
1 parent 3a9e149 commit 6202a19
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions tests/Foundatio.Aliyun.Tests/Storage/AliyunStorageTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ public override Task CanGetFileListForSingleFolderAsync()
return base.CanGetFileListForSingleFolderAsync();
}

[Fact]
public override Task CanGetFileListForSingleFileAsync()
{
return base.CanGetFileListForSingleFileAsync();
}

[Fact]
public override Task CanGetPagedFileListForSingleFolderAsync()
{
Expand Down Expand Up @@ -128,4 +134,16 @@ public override Task WillRespectStreamOffsetAsync()
{
return base.WillRespectStreamOffsetAsync();
}

[Fact]
public override Task WillWriteStreamContentAsync()
{
return base.WillWriteStreamContentAsync();
}

[Fact]
public override Task CanSaveOverExistingStoredContent()

Check failure on line 145 in tests/Foundatio.Aliyun.Tests/Storage/AliyunStorageTests.cs

View workflow job for this annotation

GitHub Actions / build / build

'AliyunStorageTests.CanSaveOverExistingStoredContent()': no suitable method found to override

Check failure on line 145 in tests/Foundatio.Aliyun.Tests/Storage/AliyunStorageTests.cs

View workflow job for this annotation

GitHub Actions / build / build

'AliyunStorageTests.CanSaveOverExistingStoredContent()': no suitable method found to override
{
return base.CanSaveOverExistingStoredContent();
}
}

0 comments on commit 6202a19

Please sign in to comment.