Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
Jetpack_Cxn_Test_Base
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2/**
3 * Legacy base class for Jetpack's debugging tests.
4 *
5 * @deprecated Use Connection_Health_Test_Base or Connection_Health_Tests from the connection package directly.
6 * @package automattic/jetpack
7 */
8
9use Automattic\Jetpack\Connection\Connection_Health_Test_Base;
10
11/**
12 * "Unit Tests" for the Jetpack connection.
13 *
14 * @since 7.1.0
15 * @deprecated Use Connection_Health_Test_Base or Connection_Health_Tests from the connection package directly.
16 */
17class Jetpack_Cxn_Test_Base extends Connection_Health_Test_Base {
18}