Make client-side JUnit 3 classes available without GWTTestCase.

Review at http://gwt-code-reviews.appspot.com/1564803

Review by: rjrjr@google.com

git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@10689 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/src/com/google/gwt/junit/JUnit.gwt.xml b/user/src/com/google/gwt/junit/JUnit.gwt.xml
index 6067043..29cdbc4 100644
--- a/user/src/com/google/gwt/junit/JUnit.gwt.xml
+++ b/user/src/com/google/gwt/junit/JUnit.gwt.xml
@@ -18,6 +18,7 @@
 <!-- will inherit this module automatically.                                -->
 <module>
   <inherits name="com.google.gwt.user.User"/>
+  <inherits name="com.google.gwt.junit.JUnit3"/>
 
   <super-source path="translatable"/>
 
diff --git a/user/src/com/google/gwt/junit/JUnit3.gwt.xml b/user/src/com/google/gwt/junit/JUnit3.gwt.xml
new file mode 100644
index 0000000..19caf18
--- /dev/null
+++ b/user/src/com/google/gwt/junit/JUnit3.gwt.xml
@@ -0,0 +1,26 @@
+<!--                                                                        -->
+<!-- Copyright 2011 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   -->
+<!-- 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. License for the specific language governing permissions and   -->
+<!-- limitations under the License.                                         -->
+
+<!-- Defines GWT-translatable versions of the JUnit 3 classes, such as
+junit.framework.Assert.
+
+Normally you don't need to inherit this module. It isn't necessary when using
+GWTTestCase, and these classes shouldn't be used in production web apps. But
+you might need it if you're writing testing tools. -->
+
+<module>
+  <super-source path="translatable">
+    <include name="junit/**/*.java"/>
+  </super-source> 
+</module>