1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- /**
- * Generated by PHPUnit_SkeletonGenerator on 2013-02-17 at 00:39:52.
- */
- class AccessurledituserstourlTest extends PHPUnit_Framework_TestCase
- {
- /**
- * @var Accessurledituserstourl
- */
- protected $object;
- /**
- * Sets up the fixture, for example, opens a network connection.
- * This method is called before a test is executed.
- */
- protected function setUp()
- {
- ob_start();
- require_once dirname(__FILE__).'/../../../main/inc/lib/access_url_edit_users_to_url_functions.lib.php';
- require_once dirname(__FILE__).'/../../../main/inc/lib/main_api.lib.php';
- $this->object = new Accessurledituserstourl;
- }
- /**
- * Tears down the fixture, for example, closes a network connection.
- * This method is called after a test is executed.
- */
- protected function tearDown()
- {
- ob_end_clean();
- }
- /**
- * Generated from @assert () === false.
- *
- * @covers Accessurledituserstourl::search_users
- */
- public function testSearch_users()
- {
- $this->assertThat(
- false,
- $this->logicalNot(
- $this->equalTo($this->object->search_users(null, null))
- )
- );
- }
- }
|