commit | b4c590450fd9bd1a6613b8ec8e2d71738638f4a3 | [log] [tgz] |
---|---|---|
author | Florian Weikert <fwe@google.com> | Tue Dec 01 10:47:18 2015 +0000 |
committer | Kristina Chodorow <kchodorow@google.com> | Tue Dec 01 18:23:05 2015 +0000 |
tree | d5e1576c98cb359358870e3ffad90d0977b04f0a | |
parent | 5956bae9b1a83fc021a84a208a0f90d5d552997a [diff] [blame] |
Migrated EvaluationTestCase (and all tests depending on it) to JUnit 4. -- MOS_MIGRATED_REVID=109064201
diff --git a/src/test/java/com/google/devtools/build/lib/syntax/SkylarkEvaluationTest.java b/src/test/java/com/google/devtools/build/lib/syntax/SkylarkEvaluationTest.java index 1412c5a..59ba5c3 100644 --- a/src/test/java/com/google/devtools/build/lib/syntax/SkylarkEvaluationTest.java +++ b/src/test/java/com/google/devtools/build/lib/syntax/SkylarkEvaluationTest.java
@@ -40,8 +40,9 @@ */ @RunWith(JUnit4.class) public class SkylarkEvaluationTest extends EvaluationTest { + @Before - public void setup() throws Exception { + public final void setup() throws Exception { setMode(TestMode.SKYLARK); }