-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
3 changed files
with
52 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
34 changes: 34 additions & 0 deletions
34
...mmands-annotations/test/dev/rollczi/litecommands/annotations/reflect/SuperMethodTest.java
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,34 @@ | ||
package dev.rollczi.litecommands.annotations.reflect; | ||
|
||
import dev.rollczi.litecommands.annotations.LiteTestSpec; | ||
import dev.rollczi.litecommands.annotations.command.Command; | ||
import dev.rollczi.litecommands.annotations.execute.Execute; | ||
import org.junit.jupiter.api.Test; | ||
|
||
class SuperMethodTest extends LiteTestSpec { | ||
|
||
@Command(name = "test") | ||
static class TestCommand extends BaseCommand { | ||
@Execute(name = "new") | ||
String executeNew() { | ||
return "new"; | ||
} | ||
} | ||
|
||
static class BaseCommand { | ||
@Execute(name = "legacy") | ||
String executeLegacy() { | ||
return "legacy"; | ||
} | ||
} | ||
|
||
@Test | ||
void testSuperMethod() { | ||
platform.execute("test legacy") | ||
.assertSuccess("legacy"); | ||
|
||
platform.execute("test new") | ||
.assertSuccess("new"); | ||
} | ||
|
||
} |
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