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
079b324e
Commit
079b324e
authored
Apr 20, 2017
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make RunningDocumentationTests platform independent
Closes gh-8920
parent
d59bcb6e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
RunningDocumentationTests.java
...framework/boot/gradle/docs/RunningDocumentationTests.java
+5
-2
No files found.
spring-boot-tools/spring-boot-gradle-plugin/src/test/java/org/springframework/boot/gradle/docs/RunningDocumentationTests.java
View file @
079b324e
...
@@ -16,6 +16,7 @@
...
@@ -16,6 +16,7 @@
package
org
.
springframework
.
boot
.
gradle
.
docs
;
package
org
.
springframework
.
boot
.
gradle
.
docs
;
import
java.io.File
;
import
java.io.IOException
;
import
java.io.IOException
;
import
org.junit.Rule
;
import
org.junit.Rule
;
...
@@ -26,7 +27,7 @@ import org.springframework.boot.gradle.testkit.GradleBuild;
...
@@ -26,7 +27,7 @@ import org.springframework.boot.gradle.testkit.GradleBuild;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
/**
/**
* Tests for the
integrating with Actuator document
ation.
* Tests for the
documentation about running a Spring Boot applic
ation.
*
*
* @author Andy Wilkinson
* @author Andy Wilkinson
*/
*/
...
@@ -54,7 +55,9 @@ public class RunningDocumentationTests {
...
@@ -54,7 +55,9 @@ public class RunningDocumentationTests {
public
void
bootRunSourceResources
()
throws
IOException
{
public
void
bootRunSourceResources
()
throws
IOException
{
assertThat
(
this
.
gradleBuild
assertThat
(
this
.
gradleBuild
.
script
(
"src/main/gradle/running/boot-run-source-resources.gradle"
)
.
script
(
"src/main/gradle/running/boot-run-source-resources.gradle"
)
.
build
(
"configuredClasspath"
).
getOutput
()).
contains
(
"src/main/resources"
);
.
build
(
"configuredClasspath"
).
getOutput
()).
contains
(
new
File
(
this
.
gradleBuild
.
getProjectDir
(),
"src/main/resources"
)
.
getAbsolutePath
());
}
}
}
}
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