Conditions | 1 |
Paths | 1 |
Total Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName |
||
31 | public function test_get_jetpack_api_version_with_constant() { |
||
32 | $test_constant_value = 3; |
||
33 | Constants::set_constant( 'JETPACK__API_VERSION', $test_constant_value ); |
||
34 | $this->assertEquals( $test_constant_value, Utils::get_jetpack_api_version() ); |
||
35 | } |
||
36 | |||
45 |