| 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 |
|
| 9 |
use 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 |
*/ |
| 17 |
class Jetpack_Cxn_Test_Base extends Connection_Health_Test_Base { |
| 18 |
} |
| 19 |
|