use of com.google.devtools.build.lib.testutil.TestFileOutErr in project bazel by bazelbuild.
the class ExecutableSymlinkActionTest method createExecutor.
@Before
public final void createExecutor() throws Exception {
final Path inputDir = scratch.dir("/in");
inputRoot = Root.asDerivedRoot(inputDir);
outputRoot = Root.asDerivedRoot(scratch.dir("/out"));
outErr = new TestFileOutErr();
executor = new DummyExecutor(inputDir);
}
Aggregations