Skip to content

Instantly share code, notes, and snippets.

View viettrungphan's full-sized avatar

Phan Viết Trung viettrungphan

  • Dwarves Foundation
  • VietNam
View GitHub Profile
@oks
oks / ocmock-cheatsheet.m
Last active May 11, 2023 14:07 — forked from kharmabum/ocmock-cheatsheet.m
OCMock cheatsheet
/*----------------------------------------------------*/
#pragma mark - XCTAsserts
/*----------------------------------------------------*/
XCTAssert(expression, format...);
XCTAssertTrue(expression, format...);
XCTAssertFalse(expression, format...);
XCTAssertEqual(expression1, expression2, format...);
XCTAssertNotEqual(expression1, expression2, format...);
XCTAssertNil(expression, format...);