Skip to content

Commit 783c71a

Browse files
gkdnGerrit Code Review
authored and
Gerrit Code Review
committed
Introduces a suite for LongLibGwtTest.
It was missing the suite so it wasn't executed part of our smoke tests. Change-Id: I96b54690e495e9a33feafd26c213e76b7be3a082
1 parent 1788c0b commit 783c71a

File tree

2 files changed

+36
-1
lines changed

2 files changed

+36
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
/*
2+
* Copyright 2015 Google Inc.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
5+
* use this file except in compliance with the License. You may obtain a copy of
6+
* the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12+
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13+
* License for the specific language governing permissions and limitations under
14+
* the License.
15+
*/
16+
package com.google.gwt.langtest;
17+
18+
import com.google.gwt.junit.tools.GWTTestSuite;
19+
import com.google.gwt.langtest.client.LongLibGwtTest;
20+
21+
import junit.framework.Test;
22+
23+
/**
24+
* Test Long emulation.
25+
*/
26+
public class LongLibGwtSuite {
27+
28+
public static Test suite() {
29+
GWTTestSuite suite = new GWTTestSuite("Tests for com.google.gwt.lang.LongLib");
30+
31+
suite.addTestSuite(LongLibGwtTest.class);
32+
33+
return suite;
34+
}
35+
}

user/test/com/google/gwt/langtest/LongLibGwtTest.java renamed to user/test/com/google/gwt/langtest/client/LongLibGwtTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* License for the specific language governing permissions and limitations under
1414
* the License.
1515
*/
16-
package com.google.gwt.langtest;
16+
package com.google.gwt.langtest.client;
1717

1818
import com.google.gwt.junit.client.GWTTestCase;
1919
import com.google.gwt.lang.LongLibTestBase;

0 commit comments

Comments
 (0)