We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fac3b3 commit 191fdc5Copy full SHA for 191fdc5
LeanCloudTests/IMConversationTestCase.swift
@@ -269,6 +269,16 @@ class IMConversationTestCase: RTMBaseTestCase {
269
clientA.convCollection.first?.value.uniqueID,
270
clientB.convCollection.first?.value.uniqueID
271
)
272
+
273
+ expecting { (exp) in
274
+ clientA.convCollection.first?.value.checkJoined(completion: { (result) in
275
+ XCTAssertTrue(Thread.isMainThread)
276
+ XCTAssertTrue(result.isSuccess)
277
+ XCTAssertNil(result.error)
278
+ XCTAssertEqual(result.value, true)
279
+ exp.fulfill()
280
+ })
281
+ }
282
}
283
284
func testCreateChatRoom() {
0 commit comments