1 | <?php |
||
16 | class WP_Test_MslsMain extends Msls_UnitTestCase { |
||
17 | |||
18 | /** |
||
19 | * Verify the get_input_array-method |
||
20 | */ |
||
21 | function test_get_input_array_method() { |
||
30 | |||
31 | /** |
||
32 | * Verify the is_autosave-method |
||
33 | * @depends test_get_input_array_method |
||
34 | */ |
||
35 | function test_is_autosave_method( $obj ) { |
||
38 | |||
39 | /** |
||
40 | * Verify the verify_nonce-method |
||
41 | * @depends test_get_input_array_method |
||
42 | */ |
||
43 | function test_verify_nonce_method( $obj ) { |
||
46 | |||
47 | } |
||
48 |
Adding explicit visibility (
private
,protected
, orpublic
) is generally recommend to communicate to other developers how, and from where this method is intended to be used.