We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c6a6f6 commit a0a256cCopy full SHA for a0a256c
TechnitiumLibrary.UnitTests/TechnitiumLibrary.IO/OffsetStreamTests.cs
@@ -11,6 +11,9 @@ public sealed class OffsetStreamTests
11
{
12
private static MemoryStream CreateStream(byte[] data) => new MemoryStream(data, writable: true);
13
14
+ public TestContext TestContext { get; set; } = null!;
15
+
16
17
// ------------------------------------------------------
18
// CONSTRUCTION & BASIC METADATA
19
@@ -239,7 +242,5 @@ public async Task WriteToAsync_ShouldCopyOnlyOffsetRange()
239
242
// THEN
240
243
CollectionAssert.AreEqual("<F"u8.ToArray(), target.ToArray());
241
244
}
-
- public TestContext TestContext { get; set; }
245
246
0 commit comments