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.java10
1 files changed, 0 insertions, 10 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 02b361979a..689b822878 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
@@ -34,13 +34,9 @@ import java.util.Set;
* A helper class for implementing tests of the "foundation" library.
*/
public abstract class FoundationTestCase {
-
protected Path rootDirectory;
-
protected Path outputBase;
- protected Path actionOutputBase;
-
// May be overridden by subclasses:
protected Reporter reporter;
protected EventCollector eventCollector;
@@ -70,7 +66,6 @@ public abstract class FoundationTestCase {
outputBase = scratch.dir("/usr/local/google/_blaze_jrluser/FAKEMD5/");
rootDirectory = scratch.dir("/workspace");
scratch.file(rootDirectory.getRelative("WORKSPACE").getPathString());
- actionOutputBase = scratch.dir("/usr/local/google/_blaze_jrluser/FAKEMD5/action_out/");
}
@Before
@@ -86,11 +81,6 @@ public abstract class FoundationTestCase {
// so that we don't cause later tests to fail.
}
- // To be overriden by sub classes if they want to disable loading.
- protected boolean isLoadingEnabled() {
- return true;
- }
-
/**
* Creates the file system; override to inject FS behavior.
*/