📄 collaborator.groovy
字号:
package groovy.mock.interceptor/** Helper class for testing. @author Dierk Koenig*/class Collaborator { def one() { throw new RuntimeException('Never reach here. Should have been mocked.') } def one(int arg) { throw new RuntimeException('Never reach here. Should have been mocked.') } def one(int one, int two) { throw new RuntimeException('Never reach here. Should have been mocked.') } def two() { throw new RuntimeException('Never reach here. Should have been mocked.') }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -