Concept Flow - Assertions (XCTAssertEqual, XCTAssertTrue)
Start Test Function
Run XCTAssertEqual
Compare Values
Continue
Run XCTAssertTrue
Check Condition
Continue
End Test Function
The test runs assertions one by one. Each assertion checks a condition or equality. If it passes, the test continues. If it fails, the test stops and reports failure.