Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4886b822 authored by Rex Hoffman's avatar Rex Hoffman Committed by Automerger Merge Worker
Browse files

The ShadowAnimationUtil has been removed from robolectric, am: 57068373 am: cf74f593

parents 7e61d197 cf74f593
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
sdk=NEWEST_SDK
shadows=com.android.app.animation.robolectric.ShadowAnimationUtils2
+0 −12
Original line number Diff line number Diff line
package com.android.app.animation.robolectric

import android.view.animation.AnimationUtils
import org.robolectric.annotation.Implements
import org.robolectric.shadows.ShadowAnimationUtils

/**
 * This shadow overwrites [ShadowAnimationUtils] and ensures that the real implementation of
 * [AnimationUtils] is used in tests.
 */
@Implements(AnimationUtils::class)
class ShadowAnimationUtils2