You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
654 B
18 lines
654 B
using StabilityMatrix.Core.Models; |
|
|
|
namespace StabilityMatrix.Tests.Models; |
|
|
|
[TestClass] |
|
public class InstalledPackageTests |
|
{ |
|
[DataTestMethod] |
|
[DataRow("C:\\User\\AppData\\StabilityMatrix", "C:\\User\\Other", null)] |
|
[DataRow("C:\\Data", "D:\\Data\\abc", null)] |
|
[DataRow("C:\\Data", "C:\\Data\\abc", "abc")] |
|
[DataRow("C:\\User\\AppData\\StabilityMatrix", "C:\\User\\AppData\\StabilityMatrix\\Packages\\abc", "Packages\\abc")] |
|
public void TestGetSubPath(string relativeTo, string path, string? expected) |
|
{ |
|
var result = InstalledPackage.GetSubPath(relativeTo, path); |
|
Assert.AreEqual(expected, result); |
|
} |
|
}
|
|
|