@Test
  public void itIndicatesWhatWeWillStream() throws Exception {
    final Podcast podcast = new Podcast();
    podcast.setMediaUrl("some.mp3");

    podcastService.onBind(podcastIntentWith(podcast));

    verify(mediaPlayer).setDataSource("some.mp3");
  }
 private Intent podcastIntent() {
   Podcast podcast = new Podcast();
   podcast.setMediaUrl("");
   return podcastIntentWith(podcast);
 }