aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com/google/devtools/build/lib/actions/ExecutableSymlinkActionTest.java
diff options
context:
space:
mode:
authorGravatar Florian Weikert <fwe@google.com>2015-12-01 14:38:00 +0000
committerGravatar Kristina Chodorow <kchodorow@google.com>2015-12-01 18:24:32 +0000
commit0220dc742f968d9d65b06d8cc52e2216e9525147 (patch)
treefd14d66ad0850790f04bafb711b15fbef4a55645 /src/test/java/com/google/devtools/build/lib/actions/ExecutableSymlinkActionTest.java
parent42e1c9c42019e1a7a8a960bd33034ef6c8fe68d2 (diff)
Migrated tests in devtools/build/lib/actions to JUnit 4.
In this case, it's more about fixing the setUp() methods (making them final and renaming them, wherever possible.) -- MOS_MIGRATED_REVID=109079801
Diffstat (limited to 'src/test/java/com/google/devtools/build/lib/actions/ExecutableSymlinkActionTest.java')
-rw-r--r--src/test/java/com/google/devtools/build/lib/actions/ExecutableSymlinkActionTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/actions/ExecutableSymlinkActionTest.java b/src/test/java/com/google/devtools/build/lib/actions/ExecutableSymlinkActionTest.java
index dc7b5fba66..39c47e8dc7 100644
--- a/src/test/java/com/google/devtools/build/lib/actions/ExecutableSymlinkActionTest.java
+++ b/src/test/java/com/google/devtools/build/lib/actions/ExecutableSymlinkActionTest.java
@@ -42,7 +42,7 @@ public class ExecutableSymlinkActionTest {
private Executor executor;
@Before
- public void setUp() throws Exception {
+ public final void createExecutor() throws Exception {
final Path inputDir = scratch.dir("/in");
inputRoot = Root.asDerivedRoot(inputDir);
outputRoot = Root.asDerivedRoot(scratch.dir("/out"));