Beispiel #1
0
        public void AddConfig()
        {
            configs.Add("Debug");
            configs["Debug"].Assemblies.Add(@"C:\tests\bin\debug\assembly1.dll");
            configs["Debug"].Assemblies.Add(@"C:\tests\bin\debug\assembly2.dll");

            Assert.AreEqual(2, configs["Debug"].Assemblies.Count);
        }
        public void AddConfig()
        {
            configs.Add("Debug");
            configs["Debug"].Assemblies.Add(Path.DirectorySeparatorChar + "tests" + Path.DirectorySeparatorChar + "bin" + Path.DirectorySeparatorChar + "debug" + Path.DirectorySeparatorChar + "assembly1.dll");
            configs["Debug"].Assemblies.Add(Path.DirectorySeparatorChar + "tests" + Path.DirectorySeparatorChar + "bin" + Path.DirectorySeparatorChar + "debug" + Path.DirectorySeparatorChar + "assembly2.dll");

            Assert.AreEqual(2, configs["Debug"].Assemblies.Count);
        }