-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor tests to use FakeNonFinalClass
Updated several test cases in AspectTest.php to replace FakeMyClass with FakeNonFinalClass. This ensures consistency throughout the tests and aligns with recent changes in the class structure. All assertions have been modified accordingly to reflect this update.
- Loading branch information
Showing
2 changed files
with
11 additions
and
11 deletions.
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
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
|
||
namespace Ray\Aop; | ||
|
||
class FakeMyClass | ||
class FakeNonFinalClass | ||
{ | ||
public function myMethod(): string | ||
{ | ||
|