Пример #1
0
        public void GetSourcePathTest()
        {
            var path = Program.GetSourcePath();

            Assert.False(string.IsNullOrEmpty(path));
            _output.WriteLine(path);
        }
Пример #2
0
        public void GetDestinationPathTest()
        {
            var path = Program.GetDestinationPath();

            Assert.False(string.IsNullOrEmpty(path));
            Assert.True(Directory.Exists(path));
            _output.WriteLine(path);
        }