mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
18 lines
437 B
C#
18 lines
437 B
C#
using System.Windows.Forms;
|
|
using NUnit.Framework;
|
|
|
|
|
|
// Dont put this in a namespace. Leaving it by itself tells NUnit
|
|
// to run it on assembly load
|
|
[SetUpFixture]
|
|
public class AssemblyTestSetup
|
|
{
|
|
[OneTimeSetUp]
|
|
public void AssemblySetup()
|
|
{
|
|
// ensure window options set before any test window created
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
}
|
|
}
|