Conforms to NSObject
Declared in GHTest.h

Overview

Test delegate for notification when a test starts and ends.

Tasks

Instance Methods

test:didLog:source:

Test logged a message.

- (void)test:(id<GHTest>)test didLog:(NSString *)didLog source:(id<GHTest>)source

Parameters

test

Test

didLog

Message

source

If tests are nested, than source corresponds to the originator of the delegate call

Declared In

GHTest.h

testDidEnd:source:

Test ended.

- (void)testDidEnd:(id<GHTest>)test source:(id<GHTest>)source

Parameters

test

Test

source

If tests are nested, than source corresponds to the originator of the delegate call

Declared In

GHTest.h

testDidStart:source:

Test started.

- (void)testDidStart:(id<GHTest>)test source:(id<GHTest>)source

Parameters

test

Test

source

If tests are nested, than source corresponds to the originator of the delegate call

Declared In

GHTest.h

testDidUpdate:source:

Test updated.

- (void)testDidUpdate:(id<GHTest>)test source:(id<GHTest>)source

Parameters

test

Test

source

If tests are nested, than source corresponds to the originator of the delegate call

Declared In

GHTest.h