public void test08()
        {
            Int32      expectedOutput = 2147483647;
            I4SECSItem secsItem       = new I4SECSItem(expectedOutput);

            Assert.IsTrue(secsItem.getValue() == expectedOutput);
        }
        public void test07()
        {
            byte[]     input          = { (byte)((SECSItemFormatCodeFunctions.getNumberFromSECSItemFormatCode(SECSItemFormatCode.I4) << 2) | 0x01), 0x04, 127, 255, 255, 255 };
            Int32      expectedOutput = 2147483647;
            I4SECSItem secsItem       = new I4SECSItem(input, 0);

            Assert.IsTrue(secsItem.getValue() == expectedOutput);
        }