Remove println invocations in tests

See gh-17592
This commit is contained in:
Johnny Lim
2019-07-20 16:08:46 +09:00
committed by Stephane Nicoll
parent ca5df3cc9c
commit 8f8b0b493e
5 changed files with 0 additions and 5 deletions

View File

@@ -4,7 +4,6 @@ import static org.junit.Assert.assertEquals
import static org.junit.Assert.assertTrue
def file = new File(basedir, "target/classes/META-INF/build-info.properties")
println file.getAbsolutePath()
Properties properties = Verify.verifyBuildInfo(file,
'org.springframework.boot.maven.it', 'build-info-additional-properties',
'Generate build info', '0.0.1.BUILD-SNAPSHOT')

View File

@@ -3,7 +3,6 @@ import org.springframework.boot.maven.Verify
import static org.junit.Assert.assertEquals
def file = new File(basedir, "target/classes/META-INF/build-info.properties")
println file.getAbsolutePath()
Properties properties = Verify.verifyBuildInfo(file,
'org.springframework.boot.maven.it', 'build-info-custom-build-time',
'Generate build info with custom build time', '0.0.1.BUILD-SNAPSHOT')

View File

@@ -3,7 +3,6 @@ import org.springframework.boot.maven.Verify
import static org.junit.Assert.assertTrue
def file = new File(basedir, "target/build.info")
println file.getAbsolutePath()
Properties properties = Verify.verifyBuildInfo(file,
'org.springframework.boot.maven.it', 'build-info-custom-file',
'Generate custom build info', '0.0.1.BUILD-SNAPSHOT')

View File

@@ -3,7 +3,6 @@ import org.springframework.boot.maven.Verify
import static org.junit.Assert.assertFalse
def file = new File(basedir, "target/classes/META-INF/build-info.properties")
println file.getAbsolutePath()
Properties properties = Verify.verifyBuildInfo(file,
'org.springframework.boot.maven.it', 'build-info-disable-build-time',
'Generate build info with disabled build time', '0.0.1.BUILD-SNAPSHOT')

View File

@@ -3,7 +3,6 @@ import org.springframework.boot.maven.Verify
import static org.junit.Assert.assertTrue
def file = new File(basedir, "target/classes/META-INF/build-info.properties")
println file.getAbsolutePath()
Properties properties = Verify.verifyBuildInfo(file,
'org.springframework.boot.maven.it', 'build-info',
'Generate build info', '0.0.1.BUILD-SNAPSHOT')