Reviewers: kpreid2,

Description:
currently there are about a dozen warning messages about use of obsolete
junit3 junit.framework.Assert (rather than junit4 org.junit.Assert)
this suppresses the warnings until we do the full conversion to junit4.

Please review this at https://codereview.appspot.com/10900043/

Affected files:
  M     tests/com/google/caja/util/MoreAsserts.java
  M     tests/com/google/caja/util/RhinoTestBed.java


Index: tests/com/google/caja/util/MoreAsserts.java
===================================================================
--- tests/com/google/caja/util/MoreAsserts.java (revision 5470)
+++ tests/com/google/caja/util/MoreAsserts.java (working copy)
@@ -27,6 +27,8 @@
  *
  * @author [email protected]
  */
+// TODO(felix8a): remove SuppressWarnings after full conversion to junit4
+@SuppressWarnings("deprecation")
 public final class MoreAsserts {

   /**
Index: tests/com/google/caja/util/RhinoTestBed.java
===================================================================
--- tests/com/google/caja/util/RhinoTestBed.java        (revision 5470)
+++ tests/com/google/caja/util/RhinoTestBed.java        (working copy)
@@ -57,6 +57,8 @@
  *
  * @author [email protected]
  */
+// TODO(felix8a): remove SuppressWarnings after full conversion to junit4
+@SuppressWarnings("deprecation")
 public class RhinoTestBed {
   private static final String HTML_NS = Namespaces.HTML_NAMESPACE_URI;



--

--- You received this message because you are subscribed to the Google Groups "Google Caja Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to