diff options
author | Jiri Vanek <[email protected]> | 2013-04-17 14:38:48 +0200 |
---|---|---|
committer | Jiri Vanek <[email protected]> | 2013-04-17 14:38:48 +0200 |
commit | c7dfa1accef2adc31170a79505f690f0037fd4f9 (patch) | |
tree | 117c2251a0bb754ce1b3ac36d993d3ee28bd0b45 /tests/test-extensions/net/sourceforge/jnlp | |
parent | 6325a345014f6fce359637aab3ce6c6a969cf655 (diff) |
Added various self-describing tests for codebase
Diffstat (limited to 'tests/test-extensions/net/sourceforge/jnlp')
-rw-r--r-- | tests/test-extensions/net/sourceforge/jnlp/browsertesting/browsers/firefox/FirefoxProfilesOperator.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test-extensions/net/sourceforge/jnlp/browsertesting/browsers/firefox/FirefoxProfilesOperator.java b/tests/test-extensions/net/sourceforge/jnlp/browsertesting/browsers/firefox/FirefoxProfilesOperator.java index 7e919eb..9a5064e 100644 --- a/tests/test-extensions/net/sourceforge/jnlp/browsertesting/browsers/firefox/FirefoxProfilesOperator.java +++ b/tests/test-extensions/net/sourceforge/jnlp/browsertesting/browsers/firefox/FirefoxProfilesOperator.java @@ -125,7 +125,7 @@ public class FirefoxProfilesOperator { } } - private static void copyFile(File from, File to) throws IOException { + public static void copyFile(File from, File to) throws IOException { FileInputStream is = new FileInputStream(from); FileOutputStream fos = new FileOutputStream(to); FileChannel f = is.getChannel(); @@ -138,7 +138,7 @@ public class FirefoxProfilesOperator { } } - private static void deleteRecursively(File f) throws IOException { + public static void deleteRecursively(File f) throws IOException { if (f.isDirectory()) { for (File c : f.listFiles()) { deleteRecursively(c); @@ -151,7 +151,7 @@ public class FirefoxProfilesOperator { } } - private static void copyRecursively(File srcFileDir, File destDir) throws IOException { + public static void copyRecursively(File srcFileDir, File destDir) throws IOException { if (srcFileDir.isDirectory()) { File nwDest = new File(destDir, srcFileDir.getName()); nwDest.mkdir(); |