Skip to content

Commit 9d48737

Browse files
committed
Added missing storage tests
1 parent 7d12e1f commit 9d48737

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

tests/Foundatio.Tests/Storage/InMemoryFileStorageTests.cs

+6
Original file line numberDiff line numberDiff line change
@@ -127,5 +127,11 @@ public override Task WillRespectStreamOffsetAsync()
127127
{
128128
return base.WillRespectStreamOffsetAsync();
129129
}
130+
131+
[Fact]
132+
public override Task WillWriteStreamContentAsync()
133+
{
134+
return base.WillWriteStreamContentAsync();
135+
}
130136
}
131137
}

tests/Foundatio.Tests/Storage/ScopedFolderFileStorageTests.cs

+6
Original file line numberDiff line numberDiff line change
@@ -127,5 +127,11 @@ public override Task WillRespectStreamOffsetAsync()
127127
{
128128
return base.WillRespectStreamOffsetAsync();
129129
}
130+
131+
[Fact]
132+
public override Task WillWriteStreamContentAsync()
133+
{
134+
return base.WillWriteStreamContentAsync();
135+
}
130136
}
131137
}

tests/Foundatio.Tests/Storage/ScopedInMemoryFileStorageTests.cs

+6
Original file line numberDiff line numberDiff line change
@@ -127,5 +127,11 @@ public override Task WillRespectStreamOffsetAsync()
127127
{
128128
return base.WillRespectStreamOffsetAsync();
129129
}
130+
131+
[Fact]
132+
public override Task WillWriteStreamContentAsync()
133+
{
134+
return base.WillWriteStreamContentAsync();
135+
}
130136
}
131137
}

0 commit comments

Comments
 (0)