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