public void A_List_Of_Integer_Messages_Is_Sent()
        {
            string     label       = "Transaction group messages";
            List <int> payloadList = new List <int> {
                1, 2, 3, 4
            };
            bool wasSent = _intQueueWrapper.SendBatchTransactional(payloadList, label);

            Assert.True(wasSent);
        }
        public void A_List_Of_String_Messages_Is_Sent()
        {
            string        label       = "Transaction group messages";
            List <string> payloadList = new List <string> {
                "p1", "p2"
            };
            bool wasSent = _textQueueWrapper.SendBatchTransactional(payloadList, label);

            Assert.True(wasSent);
        }