Skip to content

Commit e7a038a

Browse files
author
tanyarybina
committed
add stream tests classes
1 parent dfca00e commit e7a038a

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
namespace ManagedCode.Storage.Tests.Storages.Azure;
2+
3+
public class AzureBlobStreamTests
4+
{
5+
6+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
using System.Threading.Tasks;
2+
using DotNet.Testcontainers.Containers;
3+
using ManagedCode.Storage.Tests.Common;
4+
using Xunit;
5+
6+
namespace ManagedCode.Storage.Tests.Storages;
7+
8+
public abstract class StreamTests<T> : BaseContainer<T>
9+
where T : IContainer
10+
{
11+
[Fact]
12+
public async Task ReadStream_WhenFileExists_ReturnData()
13+
{
14+
15+
}
16+
}

0 commit comments

Comments
 (0)