@Test
 public void injectionOfHtmlWithDefaultName() {
   assertNotNull(activity.someView);
   assertEquals(Html.fromHtml(activity.getString(R.string.someView)), activity.someView.getText());
 }
 @Test
 public void injectionOfHtmlTest() {
   assertNotNull(activity.textView);
   assertEquals(
       Html.fromHtml(activity.getString(R.string.hello_html)), activity.textView.getText());
 }