Pull again from parrt's branch 'model-updates-for-new-targets'. tests pass.

This commit is contained in:
parrt 2016-11-05 09:30:46 -07:00
parent abdb0b6a46
commit 62badff2e8
5 changed files with 13 additions and 8 deletions

View File

@ -1,8 +1,8 @@
/* This file is generated by TestGenerator, any edits will be overwritten by the next generation. */
package org.antlr.v4.test.runtime.csharp;
import org.junit.Test;
import org.junit.Ignore;
import org.junit.Test;
@SuppressWarnings("unused")
public class TestVisitors extends BaseTest {

View File

@ -4,7 +4,8 @@ package org.antlr.v4.test.runtime.java;
import org.junit.Ignore;
import org.junit.Test;
import static org.junit.Assert.*;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;
public class TestVisitors extends BaseTest {

View File

@ -1,10 +1,10 @@
/* This file is generated by TestGenerator, any edits will be overwritten by the next generation. */
package org.antlr.v4.test.runtime.javascript.node;
import org.junit.Ignore;
import org.junit.Test;
import static org.junit.Assert.*;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;
@SuppressWarnings("unused")
public class TestVisitors extends BaseTest {

View File

@ -3,7 +3,9 @@ package org.antlr.v4.test.runtime.python2;
import org.junit.Ignore;
import org.junit.Test;
import static org.junit.Assert.*;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;
@SuppressWarnings("unused")
public class TestVisitors extends BasePython2Test {
@ -293,4 +295,4 @@ public class TestVisitors extends BasePython2Test {
}
}
}

View File

@ -3,7 +3,9 @@ package org.antlr.v4.test.runtime.python3;
import org.junit.Ignore;
import org.junit.Test;
import static org.junit.Assert.*;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;
@SuppressWarnings("unused")
public class TestVisitors extends BasePython3Test {
@ -293,4 +295,4 @@ public class TestVisitors extends BasePython3Test {
}
}
}