Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
d7ef48a9
Commit
d7ef48a9
authored
Nov 08, 2016
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '1.4.x' into 1.5.x
parents
2e76687d
2c4f3904
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
SampleIntegrationTests.java
.../org/springframework/boot/cli/SampleIntegrationTests.java
+9
-2
No files found.
spring-boot-cli/src/test/java/org/springframework/boot/cli/SampleIntegrationTests.java
View file @
d7ef48a9
...
...
@@ -144,8 +144,15 @@ public class SampleIntegrationTests {
@Test
public
void
jmsSample
()
throws
Exception
{
String
output
=
this
.
cli
.
run
(
"jms.groovy"
);
assertThat
(
output
).
contains
(
"Received Greetings from Spring Boot via Artemis"
);
System
.
setProperty
(
"spring.artemis.embedded.queues"
,
"spring-boot"
);
try
{
String
output
=
this
.
cli
.
run
(
"jms.groovy"
);
assertThat
(
output
)
.
contains
(
"Received Greetings from Spring Boot via Artemis"
);
}
finally
{
System
.
clearProperty
(
"spring.artemis.embedded.queues"
);
}
}
@Test
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment