in app/models/ChannelTest.scala [39:47]
override def apply(c: HCursor): Result[ChannelTest[_]] = {
c.downField("channel").as[Channel].flatMap {
case Header => HeaderTest.headerTestDecoder(c)
case Banner1 | Banner2 => BannerTest.bannerTestDecoder(c)
case GutterLiveblog => GutterTest.gutterTestDecoder(c)
case SupportLandingPage =>SupportLandingPageTest.landingPageTestDecoder(c)
case epic => EpicTest.epicTestDecoder(c)
}
}