1
+ <?php
2
+ /**
3
+ * Basic Tests
4
+ *
5
+ * @package ThemeIsle\ElementorExtraWidgets
6
+ */
7
+
8
+ /**
9
+ * Test functions in register.php
10
+ */
11
+ class Plugin_Test extends WP_UnitTestCase {
12
+
13
+ public function setUp () {
14
+ parent ::setUp ();
15
+ wp_set_current_user ( $ this ->factory ->user ->create ( [ 'role ' => 'administrator ' ] ) );
16
+
17
+ do_action ( 'init ' );
18
+ do_action ( 'plugins_loaded ' );
19
+ }
20
+
21
+ /**
22
+ * Tests test_library_availability().
23
+ *
24
+ * @covers ElementorExtraWidgets::instance();
25
+ */
26
+ function test_library_availability () {
27
+ $ this ->assertTrue ( class_exists ( '\ThemeIsle\ElementorExtraWidgets ' ) );
28
+ }
29
+
30
+ /**
31
+ * Test the right type of class instance
32
+ *
33
+ * @covers ElementorExtraWidgets::instance();
34
+ */
35
+ public function test_getInstance () {
36
+ $ this ->assertInstanceOf ( '\Themeisle\ElementorExtraWidgets ' , \Themeisle \ElementorExtraWidgets::instance () );
37
+ }
38
+
39
+ /**
40
+ * Test if the library version is the same from the composer.json
41
+ *
42
+ * @covers ElementorExtraWidgets::$version
43
+ */
44
+ function test_version () {
45
+ $ composer_version = json_decode ( file_get_contents ( dirname ( dirname ( __FILE__ ) ) . '/composer.json ' ) );
46
+ $ this ->assertTrue ( $ composer_version ->version === \ThemeIsle \ElementorExtraWidgets::$ version );
47
+ }
48
+
49
+ /**
50
+ * Test if the class enqueues the required assets
51
+ * @covers ElementorExtraWidgets::register_assets
52
+ */
53
+ public function test_assets_enqueue () {
54
+ $ this ->assertFalse ( wp_script_is ( 'obfx-grid-js ' , 'registered ' ) );
55
+ $ this ->assertFalse ( wp_style_is ( 'eaw-elementor ' , 'registered ' ) );
56
+ }
57
+
58
+ /**
59
+ * @expectedIncorrectUsage __clone
60
+ */
61
+ public function test_Clone () {
62
+ $ obj_cloned = clone \Themeisle \ElementorExtraWidgets::$ instance ;
63
+ }
64
+
65
+ /**
66
+ * @expectedIncorrectUsage __wakeup
67
+ */
68
+ public function test_Wakeup () {
69
+ unserialize ( serialize ( \Themeisle \ElementorExtraWidgets::$ instance ) );
70
+ }
71
+ }
0 commit comments