Files
sharpcompress/tests/SharpCompress.Test/GZip/GZipWriterDirectoryTests.cs
copilot-swe-agent[bot] 084f81fc8d Format code with CSharpier
2025-10-28 10:23:57 +00:00

20 lines
528 B
C#

using System;
using System.IO;
using SharpCompress.Common;
using SharpCompress.Writers.GZip;
using Xunit;
namespace SharpCompress.Test.GZip;
public class GZipWriterDirectoryTests : TestBase
{
[Fact]
public void GZipWriter_WriteDirectory_ThrowsNotSupportedException()
{
using var memoryStream = new MemoryStream();
using var writer = new GZipWriter(memoryStream, new GZipWriterOptions());
Assert.Throws<NotSupportedException>(() => writer.WriteDirectory("test-dir", DateTime.Now));
}
}