mirror of
https://github.com/terrymacdonald/DisplayMagician.git
synced 2024-08-30 18:32:20 +00:00
41c03c30b5
First part of installing an MSTest suite. Included some config file to read in for testing the ShortcutRepository and the ProfileRepository. Had the data handy so it made sense to save it :)
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();
|
|
}
|
|
}
|
|
} |