Introduces a suite for LongLibGwtTest.
It was missing the suite so it wasn't executed part of our
smoke tests.
Change-Id: I96b54690e495e9a33feafd26c213e76b7be3a082
diff --git a/user/test/com/google/gwt/langtest/LongLibGwtSuite.java b/user/test/com/google/gwt/langtest/LongLibGwtSuite.java
new file mode 100644
index 0000000..8fa4e95
--- /dev/null
+++ b/user/test/com/google/gwt/langtest/LongLibGwtSuite.java
@@ -0,0 +1,35 @@
+/*
+ * Copyright 2015 Google Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
+ * use this file except in compliance with the License. You may obtain a copy of
+ * the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+ * License for the specific language governing permissions and limitations under
+ * the License.
+ */
+package com.google.gwt.langtest;
+
+import com.google.gwt.junit.tools.GWTTestSuite;
+import com.google.gwt.langtest.client.LongLibGwtTest;
+
+import junit.framework.Test;
+
+/**
+ * Test Long emulation.
+ */
+public class LongLibGwtSuite {
+
+ public static Test suite() {
+ GWTTestSuite suite = new GWTTestSuite("Tests for com.google.gwt.lang.LongLib");
+
+ suite.addTestSuite(LongLibGwtTest.class);
+
+ return suite;
+ }
+}
diff --git a/user/test/com/google/gwt/langtest/LongLibGwtTest.java b/user/test/com/google/gwt/langtest/client/LongLibGwtTest.java
similarity index 97%
rename from user/test/com/google/gwt/langtest/LongLibGwtTest.java
rename to user/test/com/google/gwt/langtest/client/LongLibGwtTest.java
index 1c6e4b6..0508b80 100644
--- a/user/test/com/google/gwt/langtest/LongLibGwtTest.java
+++ b/user/test/com/google/gwt/langtest/client/LongLibGwtTest.java
@@ -13,7 +13,7 @@
* License for the specific language governing permissions and limitations under
* the License.
*/
-package com.google.gwt.langtest;
+package com.google.gwt.langtest.client;
import com.google.gwt.junit.client.GWTTestCase;
import com.google.gwt.lang.LongLibTestBase;