1 | <?php |
||
15 | class WP_Test_MslsPlugin extends Msls_UnitTestCase { |
||
16 | |||
17 | function get_test() { |
||
22 | |||
23 | /** |
||
24 | * Verify the static init-method |
||
25 | */ |
||
26 | function test_admin_menu_method() { |
||
29 | |||
30 | /** |
||
31 | * Verify the static init_widget-method |
||
32 | */ |
||
33 | function test_init_widget_method() { |
||
36 | |||
37 | /** |
||
38 | * Verify the static init_i18n_support-method |
||
39 | */ |
||
40 | function test_init_i18n_support_method() { |
||
43 | |||
44 | /** |
||
45 | * Verify the static message_handler-method |
||
46 | */ |
||
47 | function test_message_handler_method() { |
||
51 | |||
52 | /** |
||
53 | * Verify the static uninstall-method |
||
54 | */ |
||
55 | function test_uninstall_method() { |
||
58 | |||
59 | /** |
||
60 | * Verify the static cleanup-method |
||
61 | */ |
||
62 | function test_cleanup_method() { |
||
65 | |||
66 | } |
||
67 |
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.