Home
last modified time | relevance | path

Searched refs:TestUtils (Results 1 – 25 of 164) sorted by relevance

1234567

/frameworks/base/tests/NetworkSecurityConfigTest/src/android/security/net/config/
DXmlConfigTests.java41 TestUtils.makeApplicationInfo()); in testEmptyConfigFile()
53 SSLContext context = TestUtils.getSSLContext(source); in testEmptyConfigFile()
54 TestUtils.assertConnectionSucceeds(context, "android.com", 443); in testEmptyConfigFile()
55 TestUtils.assertConnectionSucceeds(context, "developer.android.com", 443); in testEmptyConfigFile()
56 TestUtils.assertUrlConnectionSucceeds(context, "google.com", 443); in testEmptyConfigFile()
61 TestUtils.makeApplicationInfo()); in testEmptyAnchors()
72 SSLContext context = TestUtils.getSSLContext(source); in testEmptyAnchors()
73 TestUtils.assertConnectionFails(context, "android.com", 443); in testEmptyAnchors()
74 TestUtils.assertConnectionFails(context, "developer.android.com", 443); in testEmptyAnchors()
75 TestUtils.assertUrlConnectionFails(context, "google.com", 443); in testEmptyAnchors()
[all …]
DNetworkSecurityConfigTests.java124 SSLContext context = TestUtils.getSSLContext(testSource); in testEmptyConfig()
125 TestUtils.assertConnectionFails(context, "android.com", 443); in testEmptyConfig()
134 … SSLContext context = TestUtils.getSSLContext(new TestConfigSource(domainMap, defaultConfig)); in testEmptyPerNetworkSecurityConfig()
135 TestUtils.assertConnectionFails(context, "android.com", 443); in testEmptyPerNetworkSecurityConfig()
136 TestUtils.assertConnectionSucceeds(context, "google.com", 443); in testEmptyPerNetworkSecurityConfig()
153 = TestUtils.getSSLContext(new TestConfigSource(domainMap, getSystemStoreConfig())); in testBadPin()
154 TestUtils.assertConnectionFails(context, "android.com", 443); in testBadPin()
155 TestUtils.assertConnectionSucceeds(context, "google.com", 443); in testBadPin()
172 = TestUtils.getSSLContext(new TestConfigSource(domainMap, getEmptyConfig())); in testGoodPin()
173 TestUtils.assertConnectionSucceeds(context, "android.com", 443); in testGoodPin()
[all …]
/frameworks/base/libs/hwui/tests/unit/
DRenderNodeTests.cpp42 auto child = TestUtils::createNode(0, 0, 200, 400, [](RenderProperties& props, Canvas& canvas) { in TEST()
45 auto parent = TestUtils::createNode(0, 0, 200, 400, in TEST()
50 TestUtils::syncHierarchyPropertiesAndDisplayList(parent); in TEST()
55 TestUtils::recordNode(*parent, [](Canvas& canvas) { in TEST()
62 TestUtils::syncHierarchyPropertiesAndDisplayList(parent); in TEST()
69 auto child = TestUtils::createNode(0, 0, 200, 400, [](RenderProperties& props, Canvas& canvas) { in TEST()
72 auto parent = TestUtils::createNode(0, 0, 200, 400, in TEST()
82 TestUtils::syncHierarchyPropertiesAndDisplayList(parent); in TEST()
89 TestUtils::recordNode(*parent, [](Canvas& canvas) { in TEST()
98 TestUtils::syncHierarchyPropertiesAndDisplayList(parent); in TEST()
[all …]
DWebViewFunctorManagerTests.cpp36 nullptr, TestUtils::createMockFunctorCallbacks(RenderMode::OpenGL_ES), in TEST()
40 TestUtils::runOnRenderThreadUnmanaged([](renderthread::RenderThread&) { in TEST()
43 auto counts = TestUtils::copyCountsForFunctor(functor); in TEST()
52 nullptr, TestUtils::createMockFunctorCallbacks(RenderMode::OpenGL_ES), in TEST()
59 TestUtils::runOnRenderThreadUnmanaged([](renderthread::RenderThread&) { in TEST()
62 auto counts = TestUtils::copyCountsForFunctor(functor); in TEST()
67 TestUtils::runOnRenderThreadUnmanaged([&](auto&) { in TEST()
72 counts = TestUtils::copyCountsForFunctor(functor); in TEST()
75 TestUtils::runOnRenderThreadUnmanaged([&](auto&) { in TEST()
80 counts = TestUtils::copyCountsForFunctor(functor); in TEST()
[all …]
DSkiaPipelineTests.cpp46 auto redNode = TestUtils::createSkiaNode( in RENDERTHREAD_TEST()
59 ASSERT_EQ(TestUtils::getColor(surface, 0, 0), SK_ColorBLUE); in RENDERTHREAD_TEST()
62 ASSERT_EQ(TestUtils::getColor(surface, 0, 0), SK_ColorRED); in RENDERTHREAD_TEST()
66 auto halfGreenNode = TestUtils::createSkiaNode( in RENDERTHREAD_TEST()
81 ASSERT_EQ(TestUtils::getColor(surface, 0, 0), SK_ColorBLUE); in RENDERTHREAD_TEST()
84 ASSERT_EQ(TestUtils::getColor(surface, 0, 0), SK_ColorBLUE); in RENDERTHREAD_TEST()
85 ASSERT_EQ(TestUtils::getColor(surface, 0, 1), SK_ColorGREEN); in RENDERTHREAD_TEST()
88 ASSERT_EQ(TestUtils::getColor(surface, 0, 0), (unsigned int)SK_ColorTRANSPARENT); in RENDERTHREAD_TEST()
89 ASSERT_EQ(TestUtils::getColor(surface, 0, 1), SK_ColorGREEN); in RENDERTHREAD_TEST()
93 auto redNode = TestUtils::createSkiaNode( in RENDERTHREAD_TEST()
[all …]
DRenderNodeDrawableTests.cpp48 TestUtils::createNode(0, 0, 200, 400, [](RenderProperties& props, Canvas& canvas) { in TEST()
73 auto node = TestUtils::createSkiaNode( in drawOrderedNode()
85 auto node = TestUtils::createSkiaNode( in drawOrderedNode()
112 auto parent = TestUtils::createSkiaNode(0, 0, 100, 100, [](RenderProperties& props, in TEST()
149 ASSERT_EQ(TestUtils::getColor(surface, 0, 0), SK_ColorBLUE); in TEST()
151 auto rootNode = TestUtils::createSkiaNode( in TEST()
164 ASSERT_EQ(SK_ColorRED, TestUtils::getColor(surface, 0, 0)); in TEST()
168 ASSERT_EQ(SK_ColorWHITE, TestUtils::getColor(surface, 0, 0)); in TEST()
172 ASSERT_EQ(SK_ColorRED, TestUtils::getColor(surface, 0, 0)); in TEST()
195 ASSERT_EQ(TestUtils::getColor(surface, 0, 0), SK_ColorWHITE); in TEST()
[all …]
DSkiaDisplayListTests.cpp51 int functor1 = TestUtils::createMockFunctor(); in TEST()
103 int functor1 = TestUtils::createMockFunctor(); in TEST()
104 auto counts = TestUtils::copyCountsForFunctor(functor1); in TEST()
115 TestUtils::runOnRenderThread([&](auto&) { in TEST()
121 counts = TestUtils::copyCountsForFunctor(functor1); in TEST()
127 TestUtils::runOnRenderThread([](auto&) { in TEST()
130 counts = TestUtils::copyCountsForFunctor(functor1); in TEST()
169 auto rootNode = TestUtils::createNode(0, 0, 200, 400, nullptr); in RENDERTHREAD_TEST()
191 TestUtils::MockTreeObserver observer; in RENDERTHREAD_TEST()
228 auto rootNode = TestUtils::createNode(0, 0, 200, 400, nullptr); in RENDERTHREAD_TEST()
[all …]
DAutoBackendTextureReleaseTests.cpp47 EXPECT_EQ(1, TestUtils::getUsageCount(textureRelease)); in RENDERTHREAD_TEST()
52 EXPECT_EQ(1, TestUtils::getUsageCount(textureRelease)); in RENDERTHREAD_TEST()
65 EXPECT_EQ(1, TestUtils::getUsageCount(textureRelease)); in RENDERTHREAD_TEST()
69 EXPECT_EQ(2, TestUtils::getUsageCount(textureRelease)); in RENDERTHREAD_TEST()
/frameworks/base/tools/app_metadata_bundles/src/test/java/com/android/asllib/marshallable/
DAppInfoTest.java21 import com.android.asllib.testutils.TestUtils;
92 TestUtils.getElementFromResource( in testAllFieldsValidV1()
106 TestUtils.getElementFromResource( in testUnrecognizedFieldV1()
119 TestUtils.getElementFromResource( in testMissingRequiredFieldsOdV1()
121 TestUtils.removeOdChildEleWithName(appInfoEle, reqField); in testMissingRequiredFieldsOdV1()
134 TestUtils.getElementFromResource( in testMissingOptionalFieldsOdV1()
136 TestUtils.removeOdChildEleWithName(appInfoEle, optField); in testMissingOptionalFieldsOdV1()
148 TestUtils.getElementFromResource( in testMissingRequiredFields()
160 TestUtils.getElementFromResource( in testMissingRequiredFields()
162 TestUtils.removeOdChildEleWithName(appInfoEle, reqField); in testMissingRequiredFields()
[all …]
DDeveloperInfoTest.java21 import com.android.asllib.testutils.TestUtils;
70 TestUtils.getElementFromResource( in testMissingRequiredFields()
82 TestUtils.getElementFromResource( in testMissingRequiredFields()
84 TestUtils.removeOdChildEleWithName(developerInfoEle, reqField); in testMissingRequiredFields()
97 TestUtils.getElementFromResource( in testMissingOptionalFields()
102 var unused = developerInfo.toOdDomElement(TestUtils.document()); in testMissingOptionalFields()
107 TestUtils.getElementFromResource( in testMissingOptionalFields()
109 TestUtils.removeOdChildEleWithName(developerInfoEle, optField); in testMissingOptionalFields()
112 var unused = developerInfo.toHrDomElement(TestUtils.document()); in testMissingOptionalFields()
117 var doc = TestUtils.document(); in testHrToOdDeveloperInfo()
[all …]
DSecurityLabelsTest.java19 import com.android.asllib.testutils.TestUtils;
63 TestUtils.getElementFromResource( in testMissingOptionalFields()
67 var unused = securityLabels.toOdDomElement(TestUtils.document()); in testMissingOptionalFields()
71 TestUtils.getElementFromResource( in testMissingOptionalFields()
73 TestUtils.removeOdChildEleWithName(ele, optField); in testMissingOptionalFields()
75 var unused = securityLabels.toHrDomElement(TestUtils.document()); in testMissingOptionalFields()
80 var doc = TestUtils.document(); in testHrToOdSecurityLabels()
84 TestUtils.getElementFromResource( in testHrToOdSecurityLabels()
88 TestUtils.testFormatToFormat(doc, Paths.get(SECURITY_LABELS_OD_PATH, fileName)); in testHrToOdSecurityLabels()
92 var doc = TestUtils.document(); in testOdToHrSecurityLabels()
[all …]
DAndroidSafetyLabelTest.java21 import com.android.asllib.testutils.TestUtils;
86 TestUtils.getElementFromResource( in testMissingRequiredFieldsOdV2()
88 TestUtils.removeOdChildEleWithName(ele, reqField); in testMissingRequiredFieldsOdV2()
101 TestUtils.getElementFromResource( in testMissingOptionalFieldsOdV1()
103 TestUtils.removeOdChildEleWithName(ele, reqField); in testMissingOptionalFieldsOdV1()
114 TestUtils.getElementFromResource( in hrToOdExpectException()
125 TestUtils.getElementFromResource( in odToHrExpectException()
131 var doc = TestUtils.document(); in testHrToOdAndroidSafetyLabel()
135 TestUtils.getElementFromResource( in testHrToOdAndroidSafetyLabel()
139 TestUtils.testFormatToFormat(doc, Paths.get(ANDROID_SAFETY_LABEL_OD_PATH, fileName)); in testHrToOdAndroidSafetyLabel()
[all …]
DSystemAppSafetyLabelTest.java21 import com.android.asllib.testutils.TestUtils;
69 var doc = TestUtils.document(); in testValidV1()
73 TestUtils.getElementFromResource( in testValidV1()
98 TestUtils.getElementFromResource( in hrToOdExpectException()
108 TestUtils.getElementFromResource( in odToHrExpectException()
116 var doc = TestUtils.document(); in testHrToOdSystemAppSafetyLabel()
120 TestUtils.getElementFromResource( in testHrToOdSystemAppSafetyLabel()
125 TestUtils.testFormatToFormat(doc, Paths.get(SYSTEM_APP_SAFETY_LABEL_OD_PATH, fileName)); in testHrToOdSystemAppSafetyLabel()
129 var doc = TestUtils.document(); in testOdToHrSystemAppSafetyLabel()
133 TestUtils.getElementFromResource( in testOdToHrSystemAppSafetyLabel()
[all …]
DThirdPartyVerificationTest.java21 import com.android.asllib.testutils.TestUtils;
72 TestUtils.getElementFromResource( in hrToOdExpectException()
83 TestUtils.getElementFromResource( in odToHrExpectException()
89 var doc = TestUtils.document(); in testHrToOdThirdPartyVerification()
93 TestUtils.getElementFromResource( in testHrToOdThirdPartyVerification()
97 TestUtils.testFormatToFormat(doc, Paths.get(THIRD_PARTY_VERIFICATION_OD_PATH, fileName)); in testHrToOdThirdPartyVerification()
101 var doc = TestUtils.document(); in testOdToHrThirdPartyVerification()
105 TestUtils.getElementFromResource( in testOdToHrThirdPartyVerification()
109 TestUtils.testFormatToFormat(doc, Paths.get(THIRD_PARTY_VERIFICATION_HR_PATH, fileName)); in testOdToHrThirdPartyVerification()
DSafetyLabelsTest.java21 import com.android.asllib.testutils.TestUtils;
69 TestUtils.getElementFromResource( in testValidFieldsV1()
78 TestUtils.getElementFromResource( in testUnrecognizedFieldV2()
86 var doc = TestUtils.document(); in testHrToOdSafetyLabels()
90 TestUtils.getElementFromResource( in testHrToOdSafetyLabels()
95 TestUtils.testFormatToFormat(doc, Paths.get(SAFETY_LABELS_OD_PATH, fileName)); in testHrToOdSafetyLabels()
99 var doc = TestUtils.document(); in testOdToHrSafetyLabels()
103 TestUtils.getElementFromResource( in testOdToHrSafetyLabels()
108 TestUtils.testFormatToFormat(doc, Paths.get(SAFETY_LABELS_HR_PATH, fileName)); in testOdToHrSafetyLabels()
DTransparencyInfoTest.java21 import com.android.asllib.testutils.TestUtils;
92 var doc = TestUtils.document(); in testHrToOdTransparencyInfo()
96 TestUtils.getElementFromResource( in testHrToOdTransparencyInfo()
101 TestUtils.testFormatToFormat(doc, Paths.get(TRANSPARENCY_INFO_OD_PATH, fileName)); in testHrToOdTransparencyInfo()
108 TestUtils.getElementFromResource( in testParseOdTransparencyInfo()
114 var doc = TestUtils.document(); in testOdToHrTransparencyInfo()
118 TestUtils.getElementFromResource( in testOdToHrTransparencyInfo()
123 TestUtils.testFormatToFormat(doc, Paths.get(TRANSPARENCY_INFO_HR_PATH, fileName)); in testOdToHrTransparencyInfo()
128 var ele = TestUtils.getElementFromResource(Paths.get(TRANSPARENCY_INFO_OD_PATH, fileName)); in odToHrExpectException()
/frameworks/base/libs/hwui/tests/common/
DTestUtils.cpp43 std::mutex TestUtils::sMutex;
44 std::unordered_map<int, TestUtils::CallCounts> TestUtils::sMockFunctorCounts{};
46 SkColor TestUtils::interpolateColor(float fraction, SkColor start, SkColor end) { in interpolateColor()
63 sp<DeferredLayerUpdater> TestUtils::createTextureLayerUpdater( in createTextureLayerUpdater()
77 sp<DeferredLayerUpdater> TestUtils::createTextureLayerUpdater( in createTextureLayerUpdater()
90 void TestUtils::drawUtf8ToCanvas(Canvas* canvas, const char* text, const Paint& paint, float x, in drawUtf8ToCanvas()
101 void TestUtils::drawUtf8ToCanvas(Canvas* canvas, const char* text, const Paint& paint, in drawUtf8ToCanvas()
108 void TestUtils::TestTask::run() { in run()
122 std::unique_ptr<uint16_t[]> TestUtils::asciiToUtf16(const char* str) { in asciiToUtf16()
131 SkColor TestUtils::getColor(const sk_sp<SkSurface>& surface, int x, int y) { in getColor()
[all …]
/frameworks/base/apct-tests/perftests/core/src/android/conscrypt/conscrypt/
DEndpointFactory.java20 import org.conscrypt.TestUtils;
66 Provider provider = TestUtils.getConscryptProvider(); in newConscryptFactories()
67 SSLContext clientContext = TestUtils.newClientSslContext(provider); in newConscryptFactories()
68 SSLContext serverContext = TestUtils.newServerSslContext(provider); in newConscryptFactories()
72 TestUtils.setUseEngineSocket(clientFactory, useEngineSocket); in newConscryptFactories()
73 TestUtils.setUseEngineSocket(serverFactory, useEngineSocket); in newConscryptFactories()
74 TestUtils.setUseEngineSocket(serverSocketFactory, useEngineSocket); in newConscryptFactories()
DEngineFactory.java18 import org.conscrypt.TestUtils;
55 return TestUtils.newClientSslContext(TestUtils.getConscryptProvider()); in newConscryptClientContext()
59 return TestUtils.newServerSslContext(TestUtils.getConscryptProvider()); in newConscryptServerContext()
/frameworks/base/services/tests/displayservicetests/src/com/android/server/display/
DAutomaticBrightnessControllerTest.java115 mLightSensor = TestUtils.createSensor(Sensor.TYPE_LIGHT, "Light Sensor"); in setUp()
228 listener.onSensorChanged(TestUtils.createSensorEvent(mLightSensor, (int) lux1)); in testNoHysteresisAtMinBrightness()
242 listener.onSensorChanged(TestUtils.createSensorEvent(mLightSensor, (int) lux2)); in testNoHysteresisAtMinBrightness()
271 listener.onSensorChanged(TestUtils.createSensorEvent(mLightSensor, (int) lux1)); in testNoHysteresisAtMaxBrightness()
286 listener.onSensorChanged(TestUtils.createSensorEvent(mLightSensor, (int) lux2)); in testNoHysteresisAtMaxBrightness()
299 listener.onSensorChanged(TestUtils.createSensorEvent(mLightSensor, 1000)); in testUserAddUserDataPoint()
321 listener.onSensorChanged(TestUtils.createSensorEvent(mLightSensor, currentLux)); in testRecalculateSplines()
358 listener.onSensorChanged(TestUtils.createSensorEvent(mLightSensor, 123)); in testShortTermModelTimesOut()
372 listener.onSensorChanged(TestUtils.createSensorEvent(mLightSensor, 1000)); in testShortTermModelTimesOut()
398 listener.onSensorChanged(TestUtils.createSensorEvent(mLightSensor, 123)); in testShortTermModelDoesntTimeOut()
[all …]
DScreenOffBrightnessSensorControllerTest.java66 mLightSensor = TestUtils.createSensor(Sensor.TYPE_LIGHT, "Light Sensor"); in setUp()
98 listener.onSensorChanged(TestUtils.createSensorEvent(mLightSensor, 0)); in testBrightness()
104 listener.onSensorChanged(TestUtils.createSensorEvent(mLightSensor, sensorValue)); in testBrightness()
111 listener.onSensorChanged(TestUtils.createSensorEvent(mLightSensor, sensorValue)); in testBrightness()
118 listener.onSensorChanged(TestUtils.createSensorEvent(mLightSensor, sensorValue)); in testBrightness()
125 listener.onSensorChanged(TestUtils.createSensorEvent(mLightSensor, sensorValue)); in testBrightness()
131 listener.onSensorChanged(TestUtils.createSensorEvent(mLightSensor, sensorValue)); in testBrightness()
148 listener.onSensorChanged(TestUtils.createSensorEvent(mLightSensor, 1)); in testSensorValueValidTime()
/frameworks/base/core/tests/BroadcastRadioTests/src/com/android/server/broadcastradio/hal2/
DProgramInfoCacheTest.java53 private static final ProgramSelector TEST_AM_FM_SELECTOR = TestUtils.makeProgramSelector(
55 private static final RadioManager.ProgramInfo TEST_AM_FM_INFO = TestUtils.makeProgramInfo(
60 private static final ProgramSelector TEST_RDS_SELECTOR = TestUtils.makeProgramSelector(
62 private static final RadioManager.ProgramInfo TEST_RDS_INFO = TestUtils.makeProgramInfo(
65 private static final ProgramSelector TEST_HD_SELECTOR = TestUtils.makeProgramSelector(
79 private static final ProgramSelector TEST_DAB_SELECTOR = TestUtils.makeProgramSelector(
84 private static final RadioManager.ProgramInfo TEST_DAB_INFO = TestUtils.makeProgramInfo(
88 private static final ProgramSelector TEST_VENDOR_SELECTOR = TestUtils.makeProgramSelector(
92 private static final RadioManager.ProgramInfo TEST_VENDOR_INFO = TestUtils.makeProgramInfo(
109 chunk.modified.add(TestUtils.programInfoToHal(TEST_RDS_INFO)); in testUpdateFromHal()
[all …]
DTunerSessionHidlTest.java117 TestUtils.makeDefaultModuleProperties(), mUserControllerMock); in setup()
131 mHalCurrentInfo = TestUtils.makeHalProgramInfo(halSel, SIGNAL_QUALITY); in setup()
154 TestUtils.makeHalFmSelector(/* freq= */ 97300); in setup()
335 ProgramSelector initialSel = TestUtils.makeFmSelector(AM_FM_FREQUENCY_LIST[1]); in tune_withOneSession()
337 TestUtils.makeProgramInfo(initialSel, SIGNAL_QUALITY); in tune_withOneSession()
348 ProgramSelector initialSel = TestUtils.makeFmSelector(AM_FM_FREQUENCY_LIST[1]); in tune_withMultipleSessions()
350 TestUtils.makeProgramInfo(initialSel, SIGNAL_QUALITY); in tune_withMultipleSessions()
363 ProgramSelector sel = TestUtils.makeFmSelector(AM_FM_FREQUENCY_LIST[1]); in tune_withDeadTunerCallback_removesDeadSession()
397 ProgramSelector initialSel = TestUtils.makeFmSelector(AM_FM_FREQUENCY_LIST[1]); in tune_forNonCurrentUser_doesNotTune()
399 TestUtils.makeProgramInfo(initialSel, SIGNAL_QUALITY); in tune_forNonCurrentUser_doesNotTune()
[all …]
/frameworks/base/packages/SystemUI/accessibility/accessibilitymenu/tests/src/com/android/systemui/accessibility/accessibilitymenu/tests/
DAccessibilityMenuServiceTest.java62 import com.android.compatibility.common.util.TestUtils;
176 TestUtils.waitUntil("Failed to disable all services", in enableA11yMenuService()
186 TestUtils.waitUntil("Failed to enable service", in enableA11yMenuService()
230 TestUtils.waitUntil("Timed out before menu could close.", in closeMenu()
277 TestUtils.waitUntil("Could not change to minimum brightness", in testAdjustBrightness()
286 TestUtils.waitUntil("Did not detect an increase in brightness.", in testAdjustBrightness()
291 TestUtils.waitUntil("Could not change to maximum brightness", in testAdjustBrightness()
300 TestUtils.waitUntil("Did not detect a decrease in brightness.", in testAdjustBrightness()
326 TestUtils.waitUntil("Could not change audio stream to minimum volume.", in testAdjustVolume()
330 TestUtils.waitUntil("Did not detect an increase in volume.", in testAdjustVolume()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/accessibility/floatingmenu/
DRadiiAnimatorTest.java28 import com.android.systemui.accessibility.utils.TestUtils;
77 TestUtils.waitForCondition(mAnimationStarted::get, "Animation did not start."); in skipAnimation_updatesToEnd()
78 TestUtils.waitForCondition(() -> Arrays.equals(radiiAnimator.evaluate(0.0f), startRadii) in skipAnimation_updatesToEnd()
82 TestUtils.waitForCondition(mAnimationStopped::get, "Animation did not stop."); in skipAnimation_updatesToEnd()
116 TestUtils.waitForCondition(mAnimationStarted::get, "Animation did not start."); in playAndSkipAnimation()
118 TestUtils.waitForCondition(mAnimationStopped::get, "Animation did not stop."); in playAndSkipAnimation()

1234567