From 9c424f94316cdf8203a23b8c5b1d7b22237d4bef Mon Sep 17 00:00:00 2001 From: lguerin Date: Thu, 13 Aug 2015 11:37:15 +0200 Subject: [PATCH] Remove underscores from Test method's name --- .../net/schmizz/sshj/xfer/scp/SCPFileTransferTest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/test/java/net/schmizz/sshj/xfer/scp/SCPFileTransferTest.java b/src/test/java/net/schmizz/sshj/xfer/scp/SCPFileTransferTest.java index 759266e6..d62471fa 100644 --- a/src/test/java/net/schmizz/sshj/xfer/scp/SCPFileTransferTest.java +++ b/src/test/java/net/schmizz/sshj/xfer/scp/SCPFileTransferTest.java @@ -47,7 +47,7 @@ public class SCPFileTransferTest { } @Test - public void should_SCP_Upload_File() throws IOException { + public void shouldSCPUpload_File() throws IOException { SCPFileTransfer scpFileTransfer = sshClient.newSCPFileTransfer(); assertFalse(targetFile.exists()); scpFileTransfer.upload(sourceFile.getAbsolutePath(), targetDir.getAbsolutePath()); @@ -55,7 +55,7 @@ public class SCPFileTransferTest { } @Test - public void should_SCP_Upload_File_With_Bandwidth_Limit() throws IOException { + public void shouldSCPUploadFileWithBandwidthLimit() throws IOException { // Limit upload transfert at 2Mo/s SCPFileTransfer scpFileTransfer = sshClient.newSCPFileTransfer().bandwidthLimit(16000); assertFalse(targetFile.exists()); @@ -64,7 +64,7 @@ public class SCPFileTransferTest { } @Test - public void should_SCP_Download_File() throws IOException { + public void shouldSCPDownloadFile() throws IOException { SCPFileTransfer scpFileTransfer = sshClient.newSCPFileTransfer(); assertFalse(targetFile.exists()); scpFileTransfer.download(sourceFile.getAbsolutePath(), targetDir.getAbsolutePath()); @@ -72,7 +72,7 @@ public class SCPFileTransferTest { } @Test - public void should_SCP_Download_File_With_Bandwidth_Limit() throws IOException { + public void shouldSCPDownloadFileWithBandwidthLimit() throws IOException { // Limit download transfert at 128Ko/s SCPFileTransfer scpFileTransfer = sshClient.newSCPFileTransfer().bandwidthLimit(1024); assertFalse(targetFile.exists());