aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com/google/devtools/build/lib/actions/CustomCommandLineTest.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/CustomCommandLineTest.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/CustomCommandLineTest.java')
-rw-r--r--src/test/java/com/google/devtools/build/lib/actions/CustomCommandLineTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/actions/CustomCommandLineTest.java b/src/test/java/com/google/devtools/build/lib/actions/CustomCommandLineTest.java
index a61790d645..289f0c0a49 100644
--- a/src/test/java/com/google/devtools/build/lib/actions/CustomCommandLineTest.java
+++ b/src/test/java/com/google/devtools/build/lib/actions/CustomCommandLineTest.java
@@ -42,7 +42,7 @@ public class CustomCommandLineTest {
private Artifact artifact2;
@Before
- public void setUp() throws Exception {
+ public final void createArtifacts() throws Exception {
scratch = new Scratch();
rootDir = Root.asDerivedRoot(scratch.dir("/exec/root"));
artifact1 = new Artifact(scratch.file("/exec/root/dir/file1.txt"), rootDir);