Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

XCTestCase waitForExpectationsWithTimeout:handler: throwing EXC_BAD_ACCESS when expectation is not fulfilled

I am testing an asynchronous call using XCTestExpectation.

The following code works(the test succeeds) when the completionHandler is executed before the given 1 second timeout.

func test__async_call() {
        // prepare
        let sut = ClassToTest()
        let expectation: XCTestExpectation = self.expectationWithDescription(nil)

        // test
        sut.methodToTestWithCompletionHandler() { () -> () in
            expectation.fulfill()
        }

        // verify
        self.waitForExpectationsWithTimeout(1, handler: nil)
    }

However, if the completionHandler is not called, and therefore the expectation not fulfilled, instead of getting an test failure when calling waitForExpectationsWithTimeout I get an EXC_BAD_ACCESS, which is not very handy since this makes it impossible to see the whole test suite results.

How can I avoid this and get a normal test failure?

like image 869
e1985 Avatar asked Dec 21 '14 15:12

e1985


1 Answers

Seems that what is causing the EXC_BAD_ACCESS is passing a nil description when creating the expectation.

Passing any string to this call makes it work and we get the expected test failure when the expectation is not fulfilled.

let expectation: XCTestExpectation = self.expectationWithDescription("...")
like image 179
e1985 Avatar answered Oct 31 '22 17:10

e1985