Esempio n. 1
0
        public void TestByteArray()
        {
            int result = r.GetIntFromByteArray(0, 1000, "Hello World");
            AssertRange(result, 0, 1000);

            int secondResult = r.GetIntFromByteArray(0, 1000, "Hello World");
            Assert.AreEqual(result, secondResult);
            
            AssertRange(r.GetIntFromByteArray(0, 1000, "Hello"), 0, 1000);
        }