Example #1
0
        public void TestProcessRotate()
        {
            ProcessRotate r = ProcessRotate.FromFile(SourceFile("process_rotate.bin"));

            Assert.AreEqual(r.Buf1, System.Text.Encoding.ASCII.GetBytes("Hello"));
            Assert.AreEqual(r.Buf2, System.Text.Encoding.ASCII.GetBytes("World"));
            Assert.AreEqual(r.Buf3, System.Text.Encoding.ASCII.GetBytes("There"));
        }
        public void TestProcessRotate()
        {
            var r = ProcessRotate.FromFile(SourceFile("process_rotate.bin"));

            Assert.AreEqual(r.Buf1, new byte[] { 72, 101, 108, 108, 111 });
            Assert.AreEqual(r.Buf2, new byte[] { 87, 111, 114, 108, 100 });
            Assert.AreEqual(r.Buf3, new byte[] { 84, 104, 101, 114, 101 });
        }