This repository was archived by the owner on Jun 27, 2020. It is now read-only.
File tree 5 files changed +40
-0
lines changed
5 files changed +40
-0
lines changed Original file line number Diff line number Diff line change
1
+ // XCT Assert Equals
2
+ // Assert equals for XCTest
3
+ //
4
+ // Platform: All
5
+ // Language: Objective-C
6
+ // Completion Scope: Function or Method
7
+
8
+ XCTAssertEqual (<#expected#>, <#actual#>, <#message#>);
Original file line number Diff line number Diff line change
1
+ // XCT Assert False
2
+ // Assert false for XCTest
3
+ //
4
+ // Platform: All
5
+ // Language: Objective-C
6
+ // Completion Scope: Function or Method
7
+
8
+ XCTAssertFalse (<#expression#>, <#message#>);
Original file line number Diff line number Diff line change
1
+ // XCT Assert Nil
2
+ // Assert for XCTest
3
+ //
4
+ // Platform: All
5
+ // Language: Objective-C
6
+ // Completion Scope: Function or Method
7
+
8
+ XCTAssertNil (<#expression#>, <#message#>);
Original file line number Diff line number Diff line change
1
+ // XCT Assert Not Nil
2
+ // Assert not nil for XCTest
3
+ //
4
+ // Platform: All
5
+ // Language: Objective-C
6
+ // Completion Scope: Function or Method
7
+
8
+ XCTAssertNotNil (<#expression#>, <#message#>);
Original file line number Diff line number Diff line change
1
+ // XCT Assert True
2
+ // Assert true for XCTest
3
+ //
4
+ // Platform: All
5
+ // Language: Objective-C
6
+ // Completion Scope: Function or Method
7
+
8
+ XCTAssertTrue (<#expression#>, <#message#>);
You can’t perform that action at this time.
0 commit comments