public void GetPListPathWatchOSTest(string rootDir, WatchAppType appType, string expectedName) { var path = XamariniOSTemplate.GetPListPath(rootDir, appType); Assert.AreEqual(Path.Combine(rootDir, expectedName), path); }
public void GetPListPathTest(string rootDir, Platform platform, string expectedName) { var path = XamariniOSTemplate.GetPListPath(rootDir, platform); Assert.AreEqual(Path.Combine(rootDir, expectedName), path); }