GREYTestHelper

@interface GREYTestHelper : NSObject

Provides interface for test helper methods.

  • Enables fast animation. Invoke in the XCTest setUp method to increase the speed of your tests by not having to wait on slow animations.

    Declaration

    Objective-C

    + (void)enableFastAnimation;

    Swift

    class func enableFastAnimation()
  • Disables fast animation.

    Declaration

    Objective-C

    + (void)disableFastAnimation;

    Swift

    class func disableFastAnimation()