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
11cad9e0
Commit
11cad9e0
authored
Oct 12, 2016
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix sample in ref doc
Closes gh-7142
parent
0d331879
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
47 additions
and
22 deletions
+47
-22
pom.xml
spring-boot-docs/pom.xml
+1
-0
spring-boot-features.adoc
spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
+1
-22
RandomPortExampleTests.java
...springframework/boot/test/web/RandomPortExampleTests.java
+45
-0
No files found.
spring-boot-docs/pom.xml
View file @
11cad9e0
...
@@ -17,6 +17,7 @@
...
@@ -17,6 +17,7 @@
</organization>
</organization>
<properties>
<properties>
<main.basedir>
${basedir}/..
</main.basedir>
<main.basedir>
${basedir}/..
</main.basedir>
<disable.checks>
true
</disable.checks>
</properties>
</properties>
<dependencies>
<dependencies>
<dependency>
<dependency>
...
...
spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
View file @
11cad9e0
...
@@ -4981,28 +4981,7 @@ For convenience, tests that need to make REST calls to the started server can ad
...
@@ -4981,28 +4981,7 @@ For convenience, tests that need to make REST calls to the started server can ad
[source,java,indent=0]
[source,java,indent=0]
----
----
import org.junit.*;
include::{code-examples}/test/web/RandomPortExampleTests.java[tag=test-random-port]
import org.junit.runner.*;
import org.springframework.boot.test.context.web.*;
import org.springframework.boot.test.web.client.*;
import org.springframework.test.context.junit4.*;
import static org.assertj.core.api.Assertions.*
@RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment=WebEnvironment.RANDOM_PORT)
public class MyWebIntegrationTests {
@Autowired
private TestRestTemplate restTemplate;
@Test
public void exampleTest() {
String body = this.restTemplate.getForObject("/", String.class);
assertThat(body).isEqualTo("Hello World");
}
}
----
----
...
...
spring-boot-docs/src/main/java/org/springframework/boot/test/web/RandomPortExampleTests.java
0 → 100644
View file @
11cad9e0
/*
* Copyright 2012-2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
org
.
springframework
.
boot
.
test
.
web
;
// tag::test-random-port[]
import
org.junit.Test
;
import
org.junit.runner.RunWith
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.boot.test.context.SpringBootTest
;
import
org.springframework.boot.test.context.SpringBootTest.WebEnvironment
;
import
org.springframework.boot.test.web.client.TestRestTemplate
;
import
org.springframework.test.context.junit4.SpringRunner
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
@RunWith
(
SpringRunner
.
class
)
@SpringBootTest
(
webEnvironment
=
WebEnvironment
.
RANDOM_PORT
)
public
class
RandomPortExampleTests
{
@Autowired
private
TestRestTemplate
restTemplate
;
@Test
public
void
exampleTest
()
{
String
body
=
this
.
restTemplate
.
getForObject
(
"/"
,
String
.
class
);
assertThat
(
body
).
isEqualTo
(
"Hello World"
);
}
}
// tag::test-random-port[]
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