File tree Expand file tree Collapse file tree 2 files changed +36
-1
lines changed
user/test/com/google/gwt/langtest Expand file tree Collapse file tree 2 files changed +36
-1
lines changed Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff line change 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
1818import com .google .gwt .junit .client .GWTTestCase ;
1919import com .google .gwt .lang .LongLibTestBase ;
You can’t perform that action at this time.
0 commit comments