public void NotBeforeEndUnitTest()
            {
                Console.WriteLine(System.Reflection.MethodBase.GetCurrentMethod().Name);

                byte[] sample = Encoding.ASCII.GetBytes("The quick brown fox jumped over...");

                bool hasFox = ByteBufferInfo.HasString(sample, 0, Int32.MaxValue, "fox", "brown");

                Assert.IsTrue(!hasFox, "The string was not found in the buffer.");
            }