mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-11 13:35:00 +00:00
25 lines
649 B
C#
25 lines
649 B
C#
using System.Threading.Tasks;
|
|
using SharpCompress.Common;
|
|
using Xunit;
|
|
|
|
namespace SharpCompress.Test.Arc;
|
|
|
|
public class ArcReaderAsyncTests : ReaderTests
|
|
{
|
|
public ArcReaderAsyncTests()
|
|
{
|
|
UseExtensionInsteadOfNameToVerify = true;
|
|
UseCaseInsensitiveToVerify = true;
|
|
}
|
|
|
|
[Fact]
|
|
public async ValueTask Arc_Uncompressed_Read_Async() =>
|
|
await ReadAsync("Arc.uncompressed.arc", CompressionType.None);
|
|
|
|
[Fact]
|
|
public async ValueTask Arc_Squeezed_Read_Async() => await ReadAsync("Arc.squeezed.arc");
|
|
|
|
[Fact]
|
|
public async ValueTask Arc_Crunched_Read_Async() => await ReadAsync("Arc.crunched.arc");
|
|
}
|