File tree Expand file tree Collapse file tree 4 files changed +9
-1
lines changed Expand file tree Collapse file tree 4 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 22
22
use Hyperf \GrpcClient \Exception \GrpcClientException ;
23
23
use HyperfTest \GrpcClient \Stub \HiClient ;
24
24
use Mockery ;
25
+ use PHPUnit \Framework \Attributes \CoversNothing ;
25
26
use PHPUnit \Framework \TestCase ;
26
27
use Swoole \Coroutine \Http \Server ;
27
28
use TypeError ;
30
31
* @internal
31
32
* @coversNothing
32
33
*/
34
+ #[CoversNothing]
33
35
class BaseClientTest extends TestCase
34
36
{
35
37
public static $ server ;
Original file line number Diff line number Diff line change 16
16
use Hyperf \Di \Container ;
17
17
use HyperfTest \GrpcClient \Stub \UserServiceClient ;
18
18
use Mockery ;
19
+ use PHPUnit \Framework \Attributes \CoversNothing ;
19
20
use PHPUnit \Framework \TestCase ;
20
21
use UserService \UserId ;
21
22
22
23
/**
23
24
* @internal
24
- * @coversNothing
25
25
* protoc --php_out=./tests ./tests/Golang/pb/user/user.proto --proto_path=./tests/Golang/pb/user/
26
+ * @coversNothing
26
27
*/
28
+ #[CoversNothing]
27
29
class GoUserServiceTest extends TestCase
28
30
{
29
31
protected function setUp (): void
Original file line number Diff line number Diff line change 14
14
use Grpc \Info ;
15
15
use Hyperf \Grpc \Parser ;
16
16
use Hyperf \GrpcClient \Request ;
17
+ use PHPUnit \Framework \Attributes \CoversNothing ;
17
18
use PHPUnit \Framework \TestCase ;
18
19
19
20
/**
20
21
* @internal
21
22
* @coversNothing
22
23
*/
24
+ #[CoversNothing]
23
25
class RequestTest extends TestCase
24
26
{
25
27
public function testRequest ()
Original file line number Diff line number Diff line change 18
18
use Hyperf \GrpcClient \StreamingCall ;
19
19
use HyperfTest \GrpcClient \Stub \RouteGuideClient ;
20
20
use Mockery ;
21
+ use PHPUnit \Framework \Attributes \CoversNothing ;
21
22
use PHPUnit \Framework \TestCase ;
22
23
use Routeguide \Point ;
23
24
use Routeguide \Rectangle ;
28
29
* @internal
29
30
* @coversNothing
30
31
*/
32
+ #[CoversNothing]
31
33
class RouteGuideClientTest extends TestCase
32
34
{
33
35
protected function setUp (): void
You can’t perform that action at this time.
0 commit comments