aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com/google/devtools/build/lib/testutil/FoundationTestCase.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/com/google/devtools/build/lib/testutil/FoundationTestCase.java')
-rw-r--r--src/test/java/com/google/devtools/build/lib/testutil/FoundationTestCase.java19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/testutil/FoundationTestCase.java b/src/test/java/com/google/devtools/build/lib/testutil/FoundationTestCase.java
index c5e423b9f4..230a01e1e6 100644
--- a/src/test/java/com/google/devtools/build/lib/testutil/FoundationTestCase.java
+++ b/src/test/java/com/google/devtools/build/lib/testutil/FoundationTestCase.java
@@ -157,25 +157,6 @@ public abstract class FoundationTestCase extends TestCase {
return scratch.overwriteFile(pathName, lines);
}
- /**
- * Create a scratch file in the given filesystem, with the given pathName,
- * consisting of a set of lines. The method returns a Path instance for the
- * scratch file.
- */
- protected Path scratchFile(String pathName, byte[] content)
- throws IOException {
- return scratch.file(pathName, content);
- }
-
- /**
- * Create a scratch file in the scratch filesystem, with the given pathName,
- * consisting of a set of lines. The method returns a Path instance for the
- * scratch file.
- */
- protected void deleteFile(String pathName) throws IOException {
- scratch.deleteFile(pathName);
- }
-
// Mix-in assertions:
protected void assertNoEvents() {