mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-11-04 05:15:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			124 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			124 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Generated by PHPUnit_SkeletonGenerator on 2014-11-18 at 09:04:57.
 | 
						|
 */
 | 
						|
class UserControllerTest extends TestCase
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @var UserController
 | 
						|
     */
 | 
						|
    protected $object;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Sets up the fixture, for example, opens a network connection.
 | 
						|
     * This method is called before a test is executed.
 | 
						|
     */
 | 
						|
    public function setUp()
 | 
						|
    {
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Tears down the fixture, for example, closes a network connection.
 | 
						|
     * This method is called after a test is executed.
 | 
						|
     */
 | 
						|
    protected function tearDown()
 | 
						|
    {
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @covers UserController::login
 | 
						|
     * @todo   Implement testLogin().
 | 
						|
     */
 | 
						|
    public function testLogin()
 | 
						|
    {
 | 
						|
        // Remove the following lines when you implement this test.
 | 
						|
        $this->markTestIncomplete(
 | 
						|
            'This test has not been implemented yet.'
 | 
						|
        );
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @covers UserController::logout
 | 
						|
     * @todo   Implement testLogout().
 | 
						|
     */
 | 
						|
    public function testLogout()
 | 
						|
    {
 | 
						|
        // Remove the following lines when you implement this test.
 | 
						|
        $this->markTestIncomplete(
 | 
						|
            'This test has not been implemented yet.'
 | 
						|
        );
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @covers UserController::postLogin
 | 
						|
     * @todo   Implement testPostLogin().
 | 
						|
     */
 | 
						|
    public function testPostLogin()
 | 
						|
    {
 | 
						|
        // Remove the following lines when you implement this test.
 | 
						|
        $this->markTestIncomplete(
 | 
						|
            'This test has not been implemented yet.'
 | 
						|
        );
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @covers UserController::postRegister
 | 
						|
     * @todo   Implement testPostRegister().
 | 
						|
     */
 | 
						|
    public function testPostRegister()
 | 
						|
    {
 | 
						|
        // Remove the following lines when you implement this test.
 | 
						|
        $this->markTestIncomplete(
 | 
						|
            'This test has not been implemented yet.'
 | 
						|
        );
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @covers UserController::postRemindme
 | 
						|
     * @todo   Implement testPostRemindme().
 | 
						|
     */
 | 
						|
    public function testPostRemindme()
 | 
						|
    {
 | 
						|
        // Remove the following lines when you implement this test.
 | 
						|
        $this->markTestIncomplete(
 | 
						|
            'This test has not been implemented yet.'
 | 
						|
        );
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @covers UserController::register
 | 
						|
     * @todo   Implement testRegister().
 | 
						|
     */
 | 
						|
    public function testRegister()
 | 
						|
    {
 | 
						|
        // Remove the following lines when you implement this test.
 | 
						|
        $this->markTestIncomplete(
 | 
						|
            'This test has not been implemented yet.'
 | 
						|
        );
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @covers UserController::remindme
 | 
						|
     * @todo   Implement testRemindme().
 | 
						|
     */
 | 
						|
    public function testRemindme()
 | 
						|
    {
 | 
						|
        // Remove the following lines when you implement this test.
 | 
						|
        $this->markTestIncomplete(
 | 
						|
            'This test has not been implemented yet.'
 | 
						|
        );
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @covers UserController::reset
 | 
						|
     * @todo   Implement testReset().
 | 
						|
     */
 | 
						|
    public function testReset()
 | 
						|
    {
 | 
						|
        // Remove the following lines when you implement this test.
 | 
						|
        $this->markTestIncomplete(
 | 
						|
            'This test has not been implemented yet.'
 | 
						|
        );
 | 
						|
    }
 | 
						|
}
 |