1
1
mirror of https://github.com/github/semantic.git synced 2024-12-25 07:55:12 +03:00
semantic/prototype/DoubtTests/DiffTests.swift

9 lines
154 B
Swift
Raw Normal View History

final class DiffTests: XCTestCase {
func testSESOverEmptyCollectionsIsEmpty() {
XCTAssertEqual(Diff.diff([], []), [])
}
}
import Doubt
import XCTest