mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
more not a a test tests
This commit is contained in:
parent
230d67976d
commit
1dae2735af
1 changed files with 7 additions and 1 deletions
|
@ -268,11 +268,17 @@ class TestShellTest extends CakeTestCase {
|
|||
public function testMapNotTestToNothing() {
|
||||
$this->Shell->startup();
|
||||
|
||||
$return = $this->Shell->mapFileToCategory(APP . 'Test/Case/NotATestFile.php', false);
|
||||
$return = $this->Shell->mapFileToCategory(APP . 'Test/Case/NotATestFile.php');
|
||||
$this->assertFalse($return);
|
||||
|
||||
$return = $this->Shell->mapFileToCase(APP . 'Test/Case/NotATestFile.php', false, false);
|
||||
$this->assertFalse($return);
|
||||
|
||||
$return = $this->Shell->mapFileToCategory(APP . 'Test/Fixture/SomeTest.php');
|
||||
$this->assertFalse($return);
|
||||
|
||||
$return = $this->Shell->mapFileToCase(APP . 'Test/Fixture/SomeTest.php', false, false);
|
||||
$this->assertFalse($return);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue