File tree 2 files changed +36
-1
lines changed
user/test/com/google/gwt/langtest
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 13
13
* License for the specific language governing permissions and limitations under
14
14
* the License.
15
15
*/
16
- package com .google .gwt .langtest ;
16
+ package com .google .gwt .langtest . client ;
17
17
18
18
import com .google .gwt .junit .client .GWTTestCase ;
19
19
import com .google .gwt .lang .LongLibTestBase ;
You can’t perform that action at this time.
0 commit comments