mirror of
https://github.com/terrymacdonald/DisplayMagician.git
synced 2024-08-30 18:32:20 +00:00
20 lines
280 B
C#
20 lines
280 B
C#
using NUnit.Framework;
|
|
using System.IO;
|
|
using System;
|
|
|
|
namespace DisplayMagician.Tests
|
|
{
|
|
public class Tests
|
|
{
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
}
|
|
|
|
[Test]
|
|
public void Test1()
|
|
{
|
|
Assert.Pass();
|
|
}
|
|
}
|
|
} |