| 1 | <?php |
||
| 13 | class WP_Test_Jetpack_Calypsoify extends WP_UnitTestCase { |
||
| 14 | /** |
||
| 15 | * Instance to test. |
||
| 16 | * |
||
| 17 | * @var Jetpack_Calypsoify |
||
| 18 | */ |
||
| 19 | private $instance; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Sets up each test. |
||
| 23 | * |
||
| 24 | * @inheritDoc |
||
| 25 | */ |
||
| 26 | public function setUp() { |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Sets up the Masterbar mock. |
||
| 33 | * |
||
| 34 | * For sites when Masterbar is not active, we mock it. This test confirms that functions. |
||
| 35 | * |
||
| 36 | * @covers Jetpack_Calypsoify::mock_masterbar_activation |
||
| 37 | * @see https://github.com/Automattic/jetpack/pull/17939 |
||
| 38 | */ |
||
| 39 | public function test_mock_masterbar_activation() { |
||
| 43 | } |
||
| 44 |