Exemple #1
0
        public void GetPListPathWatchOS(string rootDir, BCLTestProjectGenerator.WatchAppType appType, string expectedName)
        {
            var path = BCLTestProjectGenerator.GetPListPath(rootDir, appType);

            Assert.Equal(Path.Combine(rootDir, expectedName), path);
        }
Exemple #2
0
        // TODO: [InlineData ("/usr/mac/path", Platform.MacOS)] not implemented yet
        public void GetPListPath(string rootDir, Platform platform, string expectedName)
        {
            var path = BCLTestProjectGenerator.GetPListPath(rootDir, platform);

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