Mark test classes as final, because they are.

This commit is contained in:
Brent Simmons 2024-09-23 21:39:00 -07:00
parent 986dbd679c
commit 2fa07611bf
9 changed files with 9 additions and 9 deletions

View File

@ -9,7 +9,7 @@
import XCTest
import FeedParser
class AtomParserTests: XCTestCase {
final class AtomParserTests: XCTestCase {
func testDaringFireballPerformance() {

View File

@ -9,7 +9,7 @@ import Foundation
import XCTest
@testable import DateParser
class DateParserTests: XCTestCase {
final class DateParserTests: XCTestCase {
func dateWithValues(_ year: Int, _ month: Int, _ day: Int, _ hour: Int, _ minute: Int, _ second: Int, _ millisecond: Int = 0) -> Date {
var dateComponents = DateComponents()

View File

@ -9,7 +9,7 @@
import XCTest
import SAX
class EntityDecodingTests: XCTestCase {
final class EntityDecodingTests: XCTestCase {
func test39Decoding() {

View File

@ -10,7 +10,7 @@ import XCTest
@testable import FeedParser
import SAX
class FeedParserTypeTests: XCTestCase {
final class FeedParserTypeTests: XCTestCase {
// MARK: HTML

View File

@ -10,7 +10,7 @@ import XCTest
import HTMLParser
import libxml2
class HTMLLinkTests: XCTestCase {
final class HTMLLinkTests: XCTestCase {
func testSixColorsPerformance() {

View File

@ -9,7 +9,7 @@
import XCTest
import FeedParser
class JSONFeedParserTests: XCTestCase {
final class JSONFeedParserTests: XCTestCase {
func testInessentialPerformance() {

View File

@ -10,7 +10,7 @@ import XCTest
import SAX
@testable import OPMLParser
class OPMLTests: XCTestCase {
final class OPMLTests: XCTestCase {
let subsData = parserData("Subs", "opml", "http://example.org/")

View File

@ -9,7 +9,7 @@
import XCTest
import FeedParser
class RSSInJSONParserTests: XCTestCase {
final class RSSInJSONParserTests: XCTestCase {
func testScriptingNewsPerformance() {

View File

@ -9,7 +9,7 @@
import XCTest
import FeedParser
class RSSParserTests: XCTestCase {
final class RSSParserTests: XCTestCase {
func testScriptingNewsPerformance() {