-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make the fixer able to fix testcase name to match file name
- Loading branch information
Showing
2 changed files
with
18 additions
and
1 deletion.
There are no files selected for viewing
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
11 changes: 11 additions & 0 deletions
11
moodle/tests/fixtures/phpunit/testcasenames_nomatch.php.fixed
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,11 @@ | ||
<?php | ||
namespace local_codechecker; | ||
defined("MOODLE_INTERNAL") || die(); // Make this always the 1st line in all CS fixtures. | ||
|
||
/** | ||
* Correct class but with name not matching the file name. | ||
*/ | ||
class testcasenames_nomatch extends local_codechecker_testcase { | ||
public function test_something() { | ||
} | ||
} |