示例#1
0
        public void GetProjectPathWatchOSTest(string projectName, WatchAppType appType, string expectedName)
        {
            // ignore the fact that all params are the same, we do not care
            var path = template.GetProjectPath(projectName, appType);

            Assert.AreEqual(Path.Combine(template.OutputDirectoryPath, "generated", Platform.WatchOS.ToString(), projectName, appType.ToString().ToLowerInvariant(), expectedName), path);
        }