Advertisement
Guest User

Untitled

a guest
Dec 25th, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. func testCopyingLists() {
  2. if let listCopy = list.copy() as? List {
  3. XCTAssertEqual(list, listCopy, "listCopy should be equal to list")
  4. } else {
  5. XCTFail("listCopy should not be nil")
  6. }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement