-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Temporary workaround for protobuf extension issue protocolbuffers/protobuf#4761 * Bump gax to 0.36 * Configure comparators for the unit test * Revert back to normal TestCase * Install protobuf extension in the PHP 7.2 test runner * Revert to TestCase
- Loading branch information
Takashi Matsuo
authored
Jul 19, 2018
1 parent
0cef27c
commit e83cee7
Showing
2 changed files
with
8 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
<?php | ||
|
||
use Google\ApiCore\Testing\MessageAwareArrayComparator; | ||
use Google\ApiCore\Testing\ProtobufMessageComparator; | ||
use Google\ApiCore\Testing\ProtobufGPBEmptyComparator; | ||
|
||
date_default_timezone_set('UTC'); | ||
\SebastianBergmann\Comparator\Factory::getInstance()->register(new MessageAwareArrayComparator()); | ||
\SebastianBergmann\Comparator\Factory::getInstance()->register(new ProtobufMessageComparator()); | ||
\SebastianBergmann\Comparator\Factory::getInstance()->register(new ProtobufGPBEmptyComparator()); |