示例#1
0
        public void CreateXmlFile_Success()
        {
            var target = new XmlService();

            var path = Path.Combine(Environment.CurrentDirectory, "Resources", "tmp.xml");

            target.CreateXmlFile(path);

            Assert.IsTrue(File.Exists(path));
        }