public void Copier_PowerOnCounter()
        {
            var copier = new Copier();

            copier.PowerOn();
            copier.PowerOn();
            copier.PowerOn();

            IDocument doc1;

            copier.Scan(out doc1);
            IDocument doc2;

            copier.Scan(out doc2);

            copier.PowerOff();
            copier.PowerOff();
            copier.PowerOff();
            copier.PowerOn();

            IDocument doc3 = new ImageDocument("aaa.jpg");

            copier.Print(in doc3);

            copier.PowerOff();
            copier.Print(in doc3);
            copier.Scan(out doc1);
            copier.PowerOn();

            copier.ScanAndPrint();
            copier.ScanAndPrint();

            // 3 włączenia
            Assert.AreEqual(3, copier.Counter);
        }
Ejemplo n.º 2
0
        public void Copier_PowerOnCounter()
        {
            var copier = new Copier();

            copier.PowerOn();
            copier.PowerOn();
            copier.PowerOn();

            IDocument doc1;

            copier.Scan(IDocument.FormatType.JPG);
            IDocument doc2;

            copier.Scan(IDocument.FormatType.PDF);

            copier.PowerOff();
            copier.PowerOff();
            copier.PowerOff();
            copier.PowerOn();

            IDocument doc3 = new ImageDocument("aaa.jpg");

            copier.Print(doc3);

            copier.PowerOff();
            copier.Print(doc3);
            copier.Scan(IDocument.FormatType.PDF);
            copier.PowerOn();

            copier.ScanAndPrint(IDocument.FormatType.TXT);
            copier.ScanAndPrint(IDocument.FormatType.JPG);

            // 3 w³¹czenia
            Assert.AreEqual(3, copier.Counter);
        }
        public void Copier_ScanCounter()
        {
            var copier = new Copier();

            copier.PowerOn();

            IDocument doc1;

            copier.Scan(out doc1);
            IDocument doc2;

            copier.Scan(out doc2);

            IDocument doc3 = new ImageDocument("aaa.jpg");

            copier.Print(in doc3);

            copier.PowerOff();
            copier.Print(in doc3);
            copier.Scan(out doc1);
            copier.PowerOn();

            copier.ScanAndPrint();
            copier.ScanAndPrint();

            // 4 skany, gdy urządzenie włączone
            Assert.AreEqual(4, copier.ScanCounter);
        }
        public void Copier_PrintCounter()
        {
            var copier = new Copier();

            copier.PowerOn();

            IDocument doc1 = new PDFDocument("aaa.pdf");

            copier.Print(in doc1);
            IDocument doc2 = new TextDocument("aaa.txt");

            copier.Print(in doc2);
            IDocument doc3 = new ImageDocument("aaa.jpg");

            copier.Print(in doc3);

            copier.PowerOff();
            copier.Print(in doc3);
            copier.Scan(out doc1);
            copier.PowerOn();

            copier.ScanAndPrint();
            copier.ScanAndPrint();

            // 5 wydruków, gdy urządzenie włączone
            Assert.AreEqual(5, copier.PrintCounter);
        }
Ejemplo n.º 5
0
        public void Copier_ScanCounter()
        {
            var copier = new Copier();

            copier.PowerOn();

            IDocument doc1;

            copier.Scan(IDocument.FormatType.PDF);
            IDocument doc2;

            copier.Scan(IDocument.FormatType.JPG);

            IDocument doc3 = new ImageDocument("aaa.jpg");

            copier.Print(doc3);

            copier.PowerOff();
            copier.Print(doc3);
            copier.Scan(IDocument.FormatType.PDF);
            copier.PowerOn();

            copier.ScanAndPrint(IDocument.FormatType.TXT);
            copier.ScanAndPrint(IDocument.FormatType.PDF);

            // 4 skany, gdy urz¹dzenie w³¹czone
            Assert.AreEqual(4, copier.ScanCounter);
        }
Ejemplo n.º 6
0
        public void Copier_PrintCounter()
        {
            var copier = new Copier();

            copier.PowerOn();

            IDocument doc1 = new PDFDocument("aaa.pdf");

            copier.Print(doc1);
            IDocument doc2 = new TextDocument("aaa.txt");

            copier.Print(doc2);
            IDocument doc3 = new ImageDocument("aaa.jpg");

            copier.Print(doc3);

            copier.PowerOff();
            copier.Print(doc3);
            copier.Scan(IDocument.FormatType.PDF);
            copier.PowerOn();

            copier.ScanAndPrint(IDocument.FormatType.JPG);
            copier.ScanAndPrint(IDocument.FormatType.TXT);

            // 5 wydruków, gdy urz¹dzenie w³¹czone
            Assert.AreEqual(5, copier.PrintCounter);
        }
        public void Copier_GetState_StateOff()
        {
            var copier = new Copier();

            copier.PowerOff();

            Assert.AreEqual(IDevice.State.off, copier.GetState());
        }
Ejemplo n.º 8
0
        public void MultidimensionalDevice_GetState_StateOff()
        {
            var copier = new Copier();

            copier.PowerOff();

            Assert.AreEqual(IDevice.State.off, copier.GetState());
        }
        public void Copier_GetState_StateOff()
        {
            var p      = new Printer();
            var s      = new Scanner();
            var copier = new Copier(p, s);

            copier.PowerOff();

            Assert.AreEqual(IDevice.State.off, copier.GetState());
        }
Ejemplo n.º 10
0
        public void Copier_Scan_DeviceOff()
        {
            var copier = new Copier();

            copier.PowerOff();

            var currentConsoleOut = Console.Out;

            currentConsoleOut.Flush();
            using (var consoleOutput = new ConsoleRedirectionToStringWriter()) {
                IDocument doc1;
                copier.Scan(out doc1);
                Assert.IsFalse(consoleOutput.GetOutput().Contains("Scan"));
            }
            Assert.AreEqual(currentConsoleOut, Console.Out);
        }
Ejemplo n.º 11
0
        public void Copier_Print_DeviceOff()
        {
            var copier = new Copier();

            copier.PowerOff();

            var currentConsoleOut = Console.Out;

            currentConsoleOut.Flush();
            using (var consoleOutput = new ConsoleRedirectionToStringWriter()) {
                IDocument doc1 = new PDFDocument("aaa.pdf");
                copier.Print(in doc1);
                Assert.IsFalse(consoleOutput.GetOutput().Contains("Print"));
            }
            Assert.AreEqual(currentConsoleOut, Console.Out);
        }
Ejemplo n.º 12
0
        public void MultidimensionalDevice_ScanAndPrint_DeviceOff()
        {
            var copier = new Copier();

            copier.PowerOff();

            var currentConsoleOut = Console.Out;

            currentConsoleOut.Flush();
            using (var consoleOutput = new ConsoleRedirectionToStringWriter())
            {
                copier.ScanAndPrint();
                Assert.IsFalse(consoleOutput.GetOutput().Contains("Scan"));
                Assert.IsFalse(consoleOutput.GetOutput().Contains("Print"));
            }
            Assert.AreEqual(currentConsoleOut, Console.Out);
        }
        static void Main(string[] args)
        {
            Copier copier = new Copier();

            Console.WriteLine($"Current copier state: {copier.GetState()}");
            copier.PowerOn();
            Console.WriteLine($"Current copier state: {copier.GetState()}");
            var doc = new PDFDocument("doc.pdf");

            copier._Printer.Print(doc);
            copier._Printer.Print(doc);
            copier._Printer.Print(doc);
            //cooling down after 3 prints
            copier._Printer.Print(doc);
            copier._Scanner.Scan();
            copier._Scanner.Scan();
            //cooling down after 2 scans
            copier._Scanner.Scan();
            copier.GetCounter();
            Console.WriteLine($"Current copier state: {copier.GetState()}");
            copier.PowerOff();
            Console.WriteLine($"Current copier state: {copier.GetState()}");
        }