mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-01-11 19:44:55 +00:00
24 lines
421 B
C#
24 lines
421 B
C#
using ICD.Common.Properties;
|
|
using NUnit.Framework;
|
|
#if SIMPLSHARP
|
|
using Crestron.IO;
|
|
#else
|
|
using System.IO;
|
|
#endif
|
|
|
|
namespace ICD.Common.Utils.Tests
|
|
{
|
|
[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"));
|
|
}
|
|
}
|
|
}
|