Disables the radioButton test with Htmlunit.

Patch by: amitmanjhi
Review by: rjrjr (desk review)



git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@5919 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/test/com/google/gwt/uibinder/client/UiBinderTest.java b/user/test/com/google/gwt/uibinder/client/UiBinderTest.java
index fcf19f7..5e28452 100644
--- a/user/test/com/google/gwt/uibinder/client/UiBinderTest.java
+++ b/user/test/com/google/gwt/uibinder/client/UiBinderTest.java
@@ -21,6 +21,8 @@
 import com.google.gwt.dom.client.Element;
 import com.google.gwt.dom.client.ParagraphElement;
 import com.google.gwt.dom.client.SpanElement;
+import com.google.gwt.junit.DoNotRunWith;
+import com.google.gwt.junit.Platform;
 import com.google.gwt.junit.client.GWTTestCase;
 import com.google.gwt.uibinder.sample.client.ClickyLink;
 import com.google.gwt.uibinder.sample.client.DomBasedUi;
@@ -244,6 +246,7 @@
     assertTrue(((HTML) north).getHTML().contains("Title area"));
   }
 
+  @DoNotRunWith(Platform.Htmlunit)
   public void testRadioButton() {
     RadioButton able = widgetUi.getMyRadioAble();
     RadioButton baker = widgetUi.getMyRadioBaker();