Esempio n. 1
0
        public void TransformLineSuccess()
        {
            ChangeLineEndingsProcessor processor = new ChangeLineEndingsProcessor();

            processor.SetParameter("LineEndings", LineEndingsNoFile.ClassicMacOS);

            processor.Init(RunInfo);

            string line            = "The quick brown fox jumps over the lazy dog.";
            string transformedLine = processor.TransformLine(line);

            Assert.AreEqual(line, transformedLine);

            processor.Cleanup();
        }
Esempio n. 2
0
        public void ExposesParameters()
        {
            // The use of these properties is tested in LineProcessorTests.
            // All we need to do here is verify that the parameters are
            // being exposed properly.

            ChangeLineEndingsProcessor processor = new ChangeLineEndingsProcessor();

            processor.SetParameter("MoveOriginalToRecycleBin", true);
            Assert.AreEqual(true, processor.MoveOriginalToRecycleBin);

            processor.SetParameter("LineEndings", LineEndingsNoFile.ClassicMacOS);
            Assert.AreEqual(LineEndings.ClassicMacOS, processor.LineEndings);

            processor.SetParameter("OutputEncoding", OutputEncodingType.UTF16_LE);
            Assert.AreEqual(OutputEncodingType.UTF16_LE, processor.OutputEncodingType);

            processor.SetParameter("FileName", @"C:\foo.txt");
            Assert.AreEqual(@"C:\foo.txt", processor.FileName);

            processor.SetParameter("OverwriteExistingFile", true);
            Assert.AreEqual(true, processor.OverwriteExistingFile);
        }