对于最新的稳定版本,请使用 Spring Shell 3.3.3! |
设置
内置仿真默认使用终端宽度 80 和高度 24。 如果输出跨越多个,则更改维度非常有用 行,并且您不想在测试中处理这些情况。
可以使用 properties 或 来更改这些参数。spring.shell.test.terminal-width
spring.shell.test.terminal-height
@ShellTest(properties = {
"spring.shell.test.terminal-width=120",
"spring.shell.test.terminal-height=40"
})
class ShellSettingsSample {}
ShellTest
annotation 具有字段,也可用于更改尺寸。terminalWidth
terminalHeight
@ShellTest(terminalWidth = 120, terminalHeight = 40)
class ShellSettingsSample {}