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