1 | <?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName |
||
18 | class Test_Blocks extends TestCase { |
||
19 | /** |
||
20 | * Test the different inputs and matching output for Classes. |
||
21 | * |
||
22 | * @since 9.0.0 |
||
23 | * |
||
24 | * @covers Automattic\Jetpack\Blocks::classes |
||
25 | */ |
||
26 | public function test_block_classes() { |
||
46 | |||
47 | /** |
||
48 | * Test for invalid alignment values. |
||
49 | * |
||
50 | * @since 9.0.0 |
||
51 | * |
||
52 | * @covers Automattic\Jetpack\Blocks::classes |
||
53 | */ |
||
54 | public function test_block_classes_invalid_align() { |
||
60 | |||
61 | /** |
||
62 | * Test whether we can detect an AMP view. |
||
63 | * |
||
64 | * @since 9.0.0 |
||
65 | * |
||
66 | * @covers Automattic\Jetpack\Blocks::is_amp_request |
||
67 | */ |
||
68 | public function test_is_amp_request() { |
||
76 | |||
77 | /** |
||
78 | * Test whether we can detect an AMP view. |
||
79 | * |
||
80 | * @since 9.0.0 |
||
81 | * |
||
82 | * @covers Automattic\Jetpack\Blocks::is_amp_request |
||
83 | */ |
||
84 | public function test_is_not_amp_request() { |
||
87 | } |
||
88 |