mirror of
https://github.com/github/semantic.git
synced 2024-12-25 07:55:12 +03:00
9 lines
154 B
Swift
9 lines
154 B
Swift
|
final class DiffTests: XCTestCase {
|
||
|
func testSESOverEmptyCollectionsIsEmpty() {
|
||
|
XCTAssertEqual(Diff.diff([], []), [])
|
||
|
}
|
||
|
}
|
||
|
|
||
|
import Doubt
|
||
|
import XCTest
|