File tree Expand file tree Collapse file tree 3 files changed +5
-0
lines changed
src/test/kotlin/integration Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -77,5 +77,6 @@ class BatchLiveInstrumentCLI : CLIIntegrationTest() {
7777 assertEquals(it.id, removedLiveBp.id)
7878 interceptor.clear()
7979 }
80+ System .setOut(origOut)
8081 }
8182}
Original file line number Diff line number Diff line change @@ -115,5 +115,6 @@ class CommandParseTest : CLIIntegrationTest() {
115115 Main .main(
116116 " -v remove instruments spp.example.webapp.model.User 48" .split(" " ).toTypedArray()
117117 )
118+ System .setOut(origOut)
118119 }
119120}
Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ class LiveInstrumentCLI : CLIIntegrationTest() {
6666 assertEquals(addedLiveLog.location.source, removedLiveLog.location.source)
6767 assertEquals(addedLiveLog.location.line, removedLiveLog.location.line)
6868 assertEquals(addedLiveLog.hitLimit, removedLiveLog.hitLimit)
69+ System .setOut(origOut)
6970 }
7071
7172 @Test
@@ -103,6 +104,7 @@ class LiveInstrumentCLI : CLIIntegrationTest() {
103104 assertEquals(removedLiveBp.location.source, removedLiveBreakpoint.location.source)
104105 assertEquals(removedLiveBp.location.line, removedLiveBreakpoint.location.line)
105106 assertEquals(removedLiveBp.hitLimit, removedLiveBreakpoint.hitLimit)
107+ System .setOut(origOut)
106108 }
107109
108110 @Test
@@ -179,5 +181,6 @@ class LiveInstrumentCLI : CLIIntegrationTest() {
179181 assertEquals(addedLiveBp.id, removedLiveBp.id)
180182 assertEquals(addedLiveBp.location.source, removedLiveBp.location.source)
181183 assertEquals(addedLiveBp.location.line, removedLiveBp.location.line)
184+ System .setOut(origOut)
182185 }
183186}
You can’t perform that action at this time.
0 commit comments