mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
10 lines
287 B
Swift
10 lines
287 B
Swift
import XCTest
|
|
|
|
class ExtendedStringTests: SwiftLintTestCase {
|
|
func testCountOccurrences() {
|
|
XCTAssertEqual("aabbabaaba".countOccurrences(of: "a"), 6)
|
|
XCTAssertEqual("".countOccurrences(of: "a"), 0)
|
|
XCTAssertEqual("\n\n".countOccurrences(of: "\n"), 2)
|
|
}
|
|
}
|