Function
captureTerminalOutputWithShellNameAndDimensions
(t testing.TB, tester shellTester, overriddenShellName string, width, height int, commands []TmuxCommand)
Source from the content-addressed store, hash-verified
| 180 | } |
| 181 | |
| 182 | func captureTerminalOutputWithShellNameAndDimensions(t testing.TB, tester shellTester, overriddenShellName string, width, height int, commands []TmuxCommand) string { |
| 183 | return captureTerminalOutputComplex(t, |
| 184 | TmuxCaptureConfig{ |
| 185 | tester: tester, |
| 186 | overriddenShellName: overriddenShellName, |
| 187 | width: width, |
| 188 | height: height, |
| 189 | complexCommands: commands, |
| 190 | }) |
| 191 | } |
| 192 | |
| 193 | type TmuxCaptureConfig struct { |
| 194 | tester shellTester |