forked from jasder/antlr
Use junit 4 API
This commit is contained in:
parent
eca9090fce
commit
0446c91280
|
@ -1,10 +1,11 @@
|
|||
package org.antlr.v4.test;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
import org.antlr.v4.runtime.atn.ArrayPredictionContext;
|
||||
import org.antlr.v4.runtime.atn.PredictionContext;
|
||||
import org.antlr.v4.runtime.atn.PredictionContextCache;
|
||||
import org.antlr.v4.runtime.atn.SingletonPredictionContext;
|
||||
import static org.junit.Assert.*;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.util.ArrayDeque;
|
||||
|
@ -12,11 +13,11 @@ import java.util.Deque;
|
|||
import java.util.IdentityHashMap;
|
||||
import java.util.Map;
|
||||
|
||||
public class TestGraphNodes extends TestCase {
|
||||
public class TestGraphNodes {
|
||||
PredictionContextCache contextCache;
|
||||
|
||||
@Override
|
||||
protected void setUp() throws Exception {
|
||||
@Before
|
||||
public void setUp() {
|
||||
PredictionContext.globalNodeCount = 1;
|
||||
contextCache = new PredictionContextCache();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue