public void BuildWriteBoolCommandTest( )
        {
            byte[] right = new byte[] { 0x05, 0x30, 0x30, 0x46, 0x46, 0x42, 0x57, 0x30, 0x4D, 0x30, 0x39, 0x30, 0x33, 0x30, 0x35, 0x30, 0x31, 0x31, 0x30, 0x31, 0x32, 0x36 };
            OperateResult <byte[]> command = MelsecFxLinks.BuildWriteBoolCommand(0, "M903", new bool[] { false, true, true, false, true }, true, 0);

            Assert.IsTrue(HslCommunication.BasicFramework.SoftBasic.IsTwoBytesEquel(command.Content, right), HslCommunication.BasicFramework.SoftBasic.ByteToHexString(command.Content, ' '));
        }