-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from ppazos/20_control_length_suite_names_and_…
…tests 20_control_length_names
- Loading branch information
Showing
4 changed files
with
62 additions
and
6 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
tests/suite4__Lorem_Ipsum_is_simply_dummy_text/TestCase41_Lorem_Ipsum_is.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
|
||
namespace tests\suite4__Lorem_Ipsum_is_simply_dummy_text; | ||
|
||
use \CaboLabs\PhTest\PhTestCase; | ||
|
||
class TestCase41_Lorem_Ipsum_is extends PhTestCase { | ||
|
||
public function test_this_is_a_test() | ||
{ | ||
echo "this is a test output"; | ||
$this->assert(true, "This is happening"); | ||
} | ||
|
||
public function test_this_is_another_test() | ||
{ | ||
$this->assert(true, "This is happening"); | ||
} | ||
} | ||
|
||
?> |
21 changes: 21 additions & 0 deletions
21
tests/suite4__Lorem_Ipsum_is_simply_dummy_text/TestCase42_simply_dummy_text.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
|
||
namespace tests\suite4__Lorem_Ipsum_is_simply_dummy_text; | ||
|
||
use \CaboLabs\PhTest\PhTestCase; | ||
|
||
class TestCase42_simply_dummy_text extends PhTestCase { | ||
|
||
public function test_this_is_a_test() | ||
{ | ||
echo "this is a test output"; | ||
$this->assert(true, "This is happening"); | ||
} | ||
|
||
public function test_this_is_another_test() | ||
{ | ||
$this->assert(true, "This is happening"); | ||
} | ||
} | ||
|
||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters