PluginProbe
Vimeography: Vimeo Video Gallery WordPress Plugin / 2.2
Vimeography: Vimeo Video Gallery WordPress Plugin v2.2
2.4.9 2.4.8 trunk 0.5.1 0.5.2 0.5.3 0.5.4 0.5.5 0.5.6 0.5.7 0.6 0.6.1 0.6.2 0.6.3 0.6.4 0.6.5 0.6.6 0.6.7 0.6.8 0.6.8.1 0.6.9 0.6.9.1 0.6.9.2 0.7 0.8 All 103 releases
vimeography / tests / framework / testcase.php

testcase.php in Vimeography: Vimeo Video Gallery WordPress Plugin 2.2, at tests/framework/testcase.php

26 lines 630 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Vimeography_Unit_Tests;
3
4 //require dirname( __FILE__ ) . '/factory.php';
5
6 class Vimeography_UnitTestCase extends \WP_UnitTestCase {
7 public function setUp() {
8 parent::setUp();
9 set_current_screen( 'dashboard' );
10 //$this->factory = new EDD_UnitTest_Factory;
11
12 //require_once dirname(__FILE__) . '/../subclasses/test_shortcode.php';
13 }
14
15 public function clean_up_global_scope() {
16 parent::clean_up_global_scope();
17 }
18
19 public function assertPreConditions() {
20 parent::assertPreConditions();
21 }
22
23 public function set_current_user( $user_id ) {
24 wp_set_current_user( $user_id );
25 }
26 }