Adding incomplete tests so I remember what to do next.

This commit is contained in:
mark_story 2010-10-13 21:09:33 -04:00
parent 81d61a66c8
commit 3e1554f5bb
3 changed files with 36 additions and 0 deletions

View file

@ -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.');
}
}

View file

@ -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.');
}
}

View file

@ -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
*