mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 11:14:25 +00:00
11 lines
222 B
C#
11 lines
222 B
C#
using System.Text;
|
|
using NUnit.Framework;
|
|
|
|
namespace Aaru.Tests;
|
|
|
|
[SetUpFixture]
|
|
public class Tests
|
|
{
|
|
[OneTimeSetUp]
|
|
public void EnableEncodings() => Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
|
|
} |