@Test
 public void testReturnsAnimationIfNotFromMemoryCacheAndFirstResource() {
   assertNotEquals(
       NoAnimation.get(), factory.build(false /*isFromMemoryCache*/, true /*isFirstResource*/));
 }
 @Test
 public void testReturnsNoAnimationIfFromMemoryCache() {
   assertEquals(
       NoAnimation.get(), factory.build(true /*isFromMemoryCache*/, true /*isFirstResource*/));
 }