Resurrecting old unit tests

This commit is contained in:
Chris Cameron
2017-07-18 12:43:56 -04:00
parent f120e2bef7
commit db66fc40cf
7 changed files with 566 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
using System.Linq;
using NUnit.Framework;
using ICD.Common.Utils;
using ICD.Common.Properties;
#if SIMPLSHARP
using Crestron.IO;
#else
using System.IO;
#endif
namespace RSD.SimplSharp.Common.Interfaces.Tests.Utils
{
[TestFixture]
public sealed class PathUtilsTest
{
[Test, UsedImplicitly]
public void JoinTest()
{
string expected = Path.Combine("A", "B");
expected = Path.Combine(expected, "C");
Assert.AreEqual(expected, PathUtils.Join("A", "B", "C"));
}
}
}