Skip to content

Commit

Permalink
Move BigIntegerConvertTest into java8/
Browse files Browse the repository at this point in the history
Tests that contain Java8 code need to go into java8.
Once we use Java8 for building test classes this
can be reverted.

Change-Id: I965b835e0685b2fb0dcf71d22bae3c4a0869e45a
  • Loading branch information
dankurka committed May 12, 2016
1 parent c9a93db commit 0f6c5f6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 0 additions & 2 deletions user/test/com/google/gwt/emultest/BigIntegerSuite.java
Expand Up @@ -19,7 +19,6 @@
import com.google.gwt.emultest.java.math.BigIntegerAndTest;
import com.google.gwt.emultest.java.math.BigIntegerCompareTest;
import com.google.gwt.emultest.java.math.BigIntegerConstructorsTest;
import com.google.gwt.emultest.java.math.BigIntegerConvertTest;
import com.google.gwt.emultest.java.math.BigIntegerDivideTest;
import com.google.gwt.emultest.java.math.BigIntegerHashCodeTest;
import com.google.gwt.emultest.java.math.BigIntegerModPowTest;
Expand All @@ -46,7 +45,6 @@ public static Test suite() {
suite.addTestSuite(BigIntegerAndTest.class);
suite.addTestSuite(BigIntegerCompareTest.class);
suite.addTestSuite(BigIntegerConstructorsTest.class);
suite.addTestSuite(BigIntegerConvertTest.class);
suite.addTestSuite(BigIntegerDivideTest.class);
suite.addTestSuite(BigIntegerHashCodeTest.class);
suite.addTestSuite(BigIntegerModPowTest.class);
Expand Down
4 changes: 4 additions & 0 deletions user/test/com/google/gwt/emultest/EmulJava8Suite.java
Expand Up @@ -15,6 +15,7 @@
*/
package com.google.gwt.emultest;

import com.google.gwt.emultest.java8.math.BigIntegerConvertTest;
import com.google.gwt.emultest.java8.util.ComparatorTest;
import com.google.gwt.emultest.java8.util.DoubleSummaryStatisticsTest;
import com.google.gwt.emultest.java8.util.HashMapTest;
Expand Down Expand Up @@ -44,6 +45,9 @@ public class EmulJava8Suite {
public static Test suite() {
GWTTestSuite suite = new GWTTestSuite("Tests for com.google.gwt.emul.java8");

//-- java.math
suite.addTestSuite(BigIntegerConvertTest.class);

//-- java.util
suite.addTestSuite(ComparatorTest.class);
suite.addTestSuite(MapTest.class);
Expand Down

0 comments on commit 0f6c5f6

Please sign in to comment.