From b782e7a62a23a6e6f537b68130de744f6ee3c4f1 Mon Sep 17 00:00:00 2001 From: Aaron Clarke Date: Wed, 10 Jun 2020 10:35:43 -0700 Subject: [PATCH] updated tests names --- .../darwin/ios/framework/Source/FlutterViewControllerTest.mm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell/platform/darwin/ios/framework/Source/FlutterViewControllerTest.mm b/shell/platform/darwin/ios/framework/Source/FlutterViewControllerTest.mm index 6c5d6ff4b45a7..1ab6055767174 100644 --- a/shell/platform/darwin/ios/framework/Source/FlutterViewControllerTest.mm +++ b/shell/platform/darwin/ios/framework/Source/FlutterViewControllerTest.mm @@ -60,7 +60,7 @@ - (void)performOrientationUpdate:(UIInterfaceOrientationMask)new_preferences; @implementation FlutterViewControllerTest -- (void)testViewDidDisappearDoesntPauseEngine { +- (void)testViewDidDisappearDoesntPauseEngineWhenNotTheViewController { id engine = OCMClassMock([FlutterEngine class]); id lifecycleChannel = OCMClassMock([FlutterBasicMessageChannel class]); OCMStub([engine lifecycleChannel]).andReturn(lifecycleChannel); @@ -78,7 +78,7 @@ - (void)testViewDidDisappearDoesntPauseEngine { OCMReject([viewControllerMock surfaceUpdated:[OCMArg any]]); } -- (void)testViewDidDisappearDoesPauseEngine { +- (void)testViewDidDisappearDoesPauseEngineWhenIsTheViewController { id engine = OCMClassMock([FlutterEngine class]); id lifecycleChannel = OCMClassMock([FlutterBasicMessageChannel class]); OCMStub([engine lifecycleChannel]).andReturn(lifecycleChannel);