pull/24969/head
root 4 years ago
parent 48de85ba51
commit 85a0368b1b
  1. 2
      src/php/tests/unit_tests/CallInvokerTest.php
  2. 3
      src/php/tests/unit_tests/ChannelTest.php

@ -176,11 +176,13 @@ class CallInvokerTest extends \PHPUnit\Framework\TestCase
public function testCreateDefaultCallInvoker() public function testCreateDefaultCallInvoker()
{ {
$call_invoker = new \Grpc\DefaultCallInvoker(); $call_invoker = new \Grpc\DefaultCallInvoker();
$this->assertNotNull($call_invoker);
} }
public function testCreateCallInvoker() public function testCreateCallInvoker()
{ {
$call_invoker = new CallInvokerUpdateChannel(); $call_invoker = new CallInvokerUpdateChannel();
$this->assertNotNull($call_invoker);
} }
public function testCallInvokerAccessChannel() public function testCallInvokerAccessChannel()

@ -39,8 +39,9 @@ class ChannelTest extends \PHPUnit\Framework\TestCase
public function testConstructorCreateSsl() public function testConstructorCreateSsl()
{ {
new Grpc\Channel('localhost:50033', $channel = new Grpc\Channel('localhost:50033',
['credentials' => \Grpc\ChannelCredentials::createSsl()]); ['credentials' => \Grpc\ChannelCredentials::createSsl()]);
$this->assertNotNull($channel);
} }
public function testGetConnectivityState() public function testGetConnectivityState()

Loading…
Cancel
Save