Search code examples
iosswiftunit-testingxctestxctestexpectation

XCTAssert break function


How to stop unit test execution if a logic is failed. Below is the example. How to stop execution when XCTAssertEqual("Hello", "Hi", "Passed") condition is failed.

func test_one() 
{    
    XCTAssertEqual("Hello", "Hi", "Passed")    
    let b = "Good Morning!" 
    // code continues...
}

Solution

  • XCTestCase has a variable var continueAfterFailure: Bool which defaults to true. This means that the test continues running even after a test fails

    override func setUp() {
        super.setUp()
        // Put setup code here. This method is called before the invocation of each test method in the class.
        continueAfterFailure = false
    }