Conforms to NSObject
Declared in RKTestFactory.h

Overview

Defines optional callback methods for extending the functionality of the factory. Implementation can be provided via a category.

Tasks

Customizing the Factory

  • + didInitialize

    Application specific initialization point for the factory. Called once per unit testing run when the factory singleton instance is initialized. RestKit applications may override via a category.

  • + didSetUp

    Application specific customization point for the factory. Invoked each time the factory is asked to set up the environment. RestKit applications leveraging the factory may override via a category.

  • + didTearDown

    Application specific customization point for the factory. Invoked each time the factory is tearing down the environment. RestKit applications leveraging the factory may override via a category.

Class Methods

didInitialize

Application specific initialization point for the factory. Called once per unit testing run when the factory singleton instance is initialized. RestKit applications may override via a category.

+ (void)didInitialize

Declared In

RKTestFactory.h

didSetUp

Application specific customization point for the factory. Invoked each time the factory is asked to set up the environment. RestKit applications leveraging the factory may override via a category.

+ (void)didSetUp

Declared In

RKTestFactory.h

didTearDown

Application specific customization point for the factory. Invoked each time the factory is tearing down the environment. RestKit applications leveraging the factory may override via a category.

+ (void)didTearDown

Declared In

RKTestFactory.h