This is an automated email from the ASF dual-hosted git repository.
sveneld pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/thrift.git
from 8970c235f Remove another boost header from the public API
add 83dcfe240 THRIFT-5951: Improve PHP library unit test coverage (#3432)
No new revisions were added by this update.
Summary of changes:
lib/php/lib/Protocol/TCompactProtocol.php | 12 +-
lib/php/test/Unit/Lib/Exception/TExceptionTest.php | 163 +++++
.../Lib/Factory/TBinaryProtocolFactoryTest.php | 26 +
.../Lib/Factory/TCompactProtocolFactoryTest.php | 26 +
.../Lib/Factory/TFramedTransportFactoryTest.php | 27 +
.../Unit/Lib/Factory/TTransportFactoryTest.php | 18 +
.../{ProcessorSpy.php => TestProcessor.php} | 2 +-
.../test/Unit/Lib/Fixture/TestRichException.php | 101 +++
.../TestSerializerStruct.php} | 20 +-
.../test/Unit/Lib/Protocol/BoundaryValuesTest.php | 138 ++++
.../test/Unit/Lib/Protocol/TBinaryProtocolTest.php | 6 +
.../test/Unit/Lib/Protocol/TJSONProtocolTest.php | 709 +++++++++++++++++++++
.../Unit/Lib/Protocol/TProtocolDecoratorTest.php | 2 +
.../Unit/Lib/Protocol/TSimpleJSONProtocolTest.php | 287 +++++++++
lib/php/test/Unit/Lib/ReflectionHelper.php | 19 +
.../Unit/Lib/Serializer/TBinarySerializerTest.php | 126 +++-
.../test/Unit/Lib/Server/TForkingServerTest.php | 247 ++++++-
.../test/Unit/Lib/TMultiplexedProcessorTest.php | 6 +-
.../Lib/Transport/TransportErrorScenariosTest.php | 196 ++++++
19 files changed, 2114 insertions(+), 17 deletions(-)
rename lib/php/test/Unit/Lib/Fixture/{ProcessorSpy.php => TestProcessor.php}
(97%)
create mode 100644 lib/php/test/Unit/Lib/Fixture/TestRichException.php
copy lib/php/test/Unit/Lib/{Base/Fixture/NestedStruct.php =>
Fixture/TestSerializerStruct.php} (72%)
create mode 100644 lib/php/test/Unit/Lib/Protocol/BoundaryValuesTest.php
create mode 100644 lib/php/test/Unit/Lib/Protocol/TJSONProtocolTest.php
create mode 100644
lib/php/test/Unit/Lib/Transport/TransportErrorScenariosTest.php