@Test
  public void setKeywordsTest() throws Exception {
    subject.setInterstitialView(interstitialView);
    String keywords = "these_are_keywords";

    subject.setKeywords(keywords);
    verify(interstitialView).setKeywords(eq(keywords));
  }