You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by wl...@apache.org on 2019/03/13 06:09:37 UTC

[rocketmq-client-cpp] branch master updated (75dbf95 -> 8012255)

This is an automated email from the ASF dual-hosted git repository.

wlliqipeng pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/rocketmq-client-cpp.git.


    from 75dbf95  Add a example of orderly PushConsumer (#97)
     new 9fb1579  unit-test-extern
     new d51d397  change
     new 8747e2d  change ckeck-git-clang-foramt.sh
     new 43fbe8d  changge check-git-clang-format
     new 5dc393e   delete object
     new 8012255  Merge pull request #103 from githublaohu/unit-test-extern

The 171 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .travis/check-git-clang-format.sh       |   4 +-
 include/CCommon.h                       |  19 +-
 include/MQClientException.h             |  94 +++++-----
 include/MQMessage.h                     | 211 +++++++++++-----------
 test/src/UrlTest.cpp                    |  59 +++---
 test/src/extern/CMessageExtTest.cpp     | 106 +++++++++++
 test/src/extern/CMessageTest.cpp        |  81 +++++++++
 test/src/extern/CProducerTest.cpp       | 231 ++++++++++++++++++++++++
 test/src/extern/CPullConsumerTest.cpp   | 211 ++++++++++++++++++++++
 test/src/extern/CPushConsumerTest.cpp   | 153 ++++++++++++++++
 test/src/message/MQDecoderTest.cpp      | 310 ++++++++++++++++----------------
 test/src/message/MQMessageExtTest.cpp   | 176 +++++++++---------
 test/src/message/MQMessageIdTest.cpp    |  47 +++--
 test/src/message/MQMessageQueueTest.cpp | 106 ++++++-----
 test/src/message/MQMessageTest.cpp      | 223 +++++++++++------------
 15 files changed, 1391 insertions(+), 640 deletions(-)
 create mode 100644 test/src/extern/CMessageExtTest.cpp
 create mode 100644 test/src/extern/CMessageTest.cpp
 create mode 100644 test/src/extern/CProducerTest.cpp
 create mode 100644 test/src/extern/CPullConsumerTest.cpp
 create mode 100644 test/src/extern/CPushConsumerTest.cpp