DisplayMagician/HeliosPlus.Tests/UnitTest1.cs
terrymacdonald 41c03c30b5 Saving initial MSTest configuration
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 :)
2020-07-26 20:52:46 +12:00

16 lines
264 B
C#

using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace HeliosPlus.Tests
{
[TestClass]
public class UnitTest1
{
[TestMethod]
public void TestMethod1()
{
Assert.IsTrue(true);
}
}
}