Esempio n. 1
0
        public void GetPListPathWatchOSTest(string rootDir, WatchAppType appType, string expectedName)
        {
            var path = XamariniOSTemplate.GetPListPath(rootDir, appType);

            Assert.AreEqual(Path.Combine(rootDir, expectedName), path);
        }
Esempio n. 2
0
        public void GetPListPathTest(string rootDir, Platform platform, string expectedName)
        {
            var path = XamariniOSTemplate.GetPListPath(rootDir, platform);

            Assert.AreEqual(Path.Combine(rootDir, expectedName), path);
        }