public void BinaryToStringToBinary()
        {
            var e = new DSMysteryDungeonCharacterEncoding();

            byte[] sequence =
            {
                0x50,
                0x6f,
                0x6f,
                0x63,
                0x68,
                0x79,
                0x65,
                0x6e,
                0x61
            };
            var sequenceString = e.GetString(sequence);

            //Should be "Poochyena"
            byte[] convertedBack = e.GetBytes(sequenceString);
            Assert.IsTrue(sequence.SequenceEqual(convertedBack), "Resulting byte array is not equal to the original sequence");
        }