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/EvaluationTest.java b/src/test/java/com/google/devtools/build/lib/syntax/EvaluationTest.java index be1cf6d..7a10338 100644 --- a/src/test/java/com/google/devtools/build/lib/syntax/EvaluationTest.java +++ b/src/test/java/com/google/devtools/build/lib/syntax/EvaluationTest.java
@@ -38,8 +38,9 @@ */ @RunWith(JUnit4.class) public class EvaluationTest extends EvaluationTestCase { + @Before - public void setBuildMode() throws Exception { + public final void setBuildMode() throws Exception { super.setMode(TestMode.BUILD); }