mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
136 lines
3.8 KiB
PHP
136 lines
3.8 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* PasswordControllerTest.php
|
||
|
* Copyright (C) 2016 Sander Dorigo
|
||
|
*
|
||
|
* This software may be modified and distributed under the terms
|
||
|
* of the MIT license. See the LICENSE file for details.
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Generated by PHPUnit_SkeletonGenerator on 2016-01-19 at 15:40:28.
|
||
|
*/
|
||
|
class PasswordControllerTest extends TestCase
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* @covers FireflyIII\Http\Controllers\Auth\PasswordController::getBroker
|
||
|
* @todo Implement testGetBroker().
|
||
|
*/
|
||
|
public function testGetBroker()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers FireflyIII\Http\Controllers\Auth\PasswordController::getEmail
|
||
|
* @todo Implement testGetEmail().
|
||
|
*/
|
||
|
public function testGetEmail()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers FireflyIII\Http\Controllers\Auth\PasswordController::getReset
|
||
|
* @todo Implement testGetReset().
|
||
|
*/
|
||
|
public function testGetReset()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers FireflyIII\Http\Controllers\Auth\PasswordController::postEmail
|
||
|
* @todo Implement testPostEmail().
|
||
|
*/
|
||
|
public function testPostEmail()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers FireflyIII\Http\Controllers\Auth\PasswordController::postReset
|
||
|
* @todo Implement testPostReset().
|
||
|
*/
|
||
|
public function testPostReset()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers FireflyIII\Http\Controllers\Auth\PasswordController::redirectPath
|
||
|
* @todo Implement testRedirectPath().
|
||
|
*/
|
||
|
public function testRedirectPath()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers FireflyIII\Http\Controllers\Auth\PasswordController::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.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers FireflyIII\Http\Controllers\Auth\PasswordController::sendResetLinkEmail
|
||
|
* @todo Implement testSendResetLinkEmail().
|
||
|
*/
|
||
|
public function testSendResetLinkEmail()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers FireflyIII\Http\Controllers\Auth\PasswordController::showLinkRequestForm
|
||
|
* @todo Implement testShowLinkRequestForm().
|
||
|
*/
|
||
|
public function testShowLinkRequestForm()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers FireflyIII\Http\Controllers\Auth\PasswordController::showResetForm
|
||
|
* @todo Implement testShowResetForm().
|
||
|
*/
|
||
|
public function testShowResetForm()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
}
|