object = new Access; } /** * Tears down the fixture, for example, closes a network connection. * This method is called after a test is executed. */ protected function tearDown() { } /** * Generated from @assert () !== null. * * @covers Access::all */ public function testAll() { $this->assertNotSame( null, Access::all() ); } /** * Generated from @assert () === null. * * @covers Access::forbidden */ public function testForbidden() { $this->assertSame( null, Access::forbidden() ); } /** * Generated from @assert () === false. * * @covers Access::is_token_valid */ public function testIs_token_valid() { $this->assertSame( false, $this->object->is_token_valid() ); } /** * Generated from @assert () !== null. * * @covers Access::get_session_token */ public function testGet_session_token() { $this->assertNotSame( null, $this->object->get_session_token() ); } /** * Generated from @assert () === false. * * @covers Access::authorize */ public function testAuthorize() { $this->assertSame( false, $this->object->authorize() ); } /** * @covers Access::get_token * @todo Implement testGet_token(). */ public function testGet_token() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } }