Example #1
0
        public void ToStringTest()
        {
            string path     = "test";           // TODO: 初始化为适当的值
            IOPath target   = new IOPath(path); // TODO: 初始化为适当的值
            string expected = "test";           // TODO: 初始化为适当的值
            string actual;

            actual = target.ToString();
            Assert.AreEqual(expected, actual);
        }