1 | <?php |
||
11 | class WpHydraIsSslTest extends WP_UnitTestCase { |
||
12 | /** |
||
13 | * Test setup |
||
14 | */ |
||
15 | public function setUp() { |
||
18 | |||
19 | /** |
||
20 | * Test teardown |
||
21 | */ |
||
22 | public function tearDown() { |
||
25 | |||
26 | /** |
||
27 | * Test when SSL is disabled. |
||
28 | * |
||
29 | * @covers WP_Hydra::is_ssl |
||
30 | */ |
||
31 | public function testWithSslDisabled() { |
||
38 | |||
39 | /** |
||
40 | * Test when SSL is enabled. |
||
41 | * |
||
42 | * @covers WP_Hydra::is_ssl |
||
43 | */ |
||
44 | public function testWithSslEnabled() { |
||
51 | |||
52 | } |
||
53 |