mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 11:06:15 +00:00
Adding incomplete tests so I remember what to do next.
This commit is contained in:
parent
81d61a66c8
commit
3e1554f5bb
3 changed files with 36 additions and 0 deletions
|
@ -634,4 +634,14 @@ TEXT;
|
|||
'quiet' => false), array('c'));
|
||||
$this->assertEquals($expected, $result, 'Sub parser did not parse request.');
|
||||
}
|
||||
|
||||
/**
|
||||
* test that the console max width is respected when generating help.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function testWidthFormatting() {
|
||||
$this->markTestIncomplete('Width formatting is not done.');
|
||||
}
|
||||
|
||||
}
|
|
@ -188,4 +188,21 @@ class ConsoleOutputTest extends CakeTestCase {
|
|||
$this->output->write('<error>Bad</error> <warning>Warning</warning> Regular', false);
|
||||
}
|
||||
|
||||
/**
|
||||
* test that multiple tags of the same name work in one string.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function testFormattingMultipleSameTags() {
|
||||
$this->markTestIncomplete('This test needs to be written.');
|
||||
}
|
||||
|
||||
/**
|
||||
* test wrapping blocks at certain widths.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function testFormatBlock() {
|
||||
$this->markTestIncomplete('This test needs to be written.');
|
||||
}
|
||||
}
|
|
@ -253,6 +253,15 @@ class ShellTest extends CakeTestCase {
|
|||
$this->Shell->out();
|
||||
}
|
||||
|
||||
/**
|
||||
* test that verbose and quiet output levels work
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function testVerboseOutput() {
|
||||
$this->markTestIncomplete('This needs to be written.');
|
||||
}
|
||||
|
||||
/**
|
||||
* testErr method
|
||||
*
|
||||
|
|
Loading…
Add table
Reference in a new issue