# vimeography/2.2/tests/framework/testcase.php

Vimeography: Vimeo Video Gallery WordPress Plugin, version 2.2. 26 lines.

- Page: https://pluginprobe.com/plugins/vimeography/2.2/code/tests/framework/testcase.php
- Raw: https://pluginprobe.com/plugins/vimeography/2.2/raw/tests/framework/testcase.php
- Modified: 2014-05-08T23:13:50+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/vimeography/2.2/code/tests/framework/testcase.php#L10-L20`.

```php
<?php
namespace Vimeography_Unit_Tests;

//require dirname( __FILE__ ) . '/factory.php';

class Vimeography_UnitTestCase extends \WP_UnitTestCase {
  public function setUp() {
    parent::setUp();
    set_current_screen( 'dashboard' );
    //$this->factory = new EDD_UnitTest_Factory;
    
    //require_once dirname(__FILE__) . '/../subclasses/test_shortcode.php';
  }

  public function clean_up_global_scope() {
    parent::clean_up_global_scope();
  }

  public function assertPreConditions() {
    parent::assertPreConditions();
  }

  public function set_current_user( $user_id ) {
    wp_set_current_user( $user_id );
  }
}
```
