Files
SwiftLint/Tests/CoreTests/ExtendedStringTests.swift
T
Danny Mösch 087278c052 Introduce new CoreTests module (#6233)
It's supposed to test code from SwiftLintCore.
2025-09-04 20:56:51 +02:00

11 lines
312 B
Swift

import TestHelpers
import XCTest
final class ExtendedStringTests: SwiftLintTestCase {
func testCountOccurrences() {
XCTAssertEqual("aabbabaaba".countOccurrences(of: "a"), 6)
XCTAssertEqual("".countOccurrences(of: "a"), 0)
XCTAssertEqual("\n\n".countOccurrences(of: "\n"), 2)
}
}