mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
12 lines
346 B
Swift
12 lines
346 B
Swift
import XCTest
|
|
@testable import ReaderAPI
|
|
|
|
final class ReaderAPITests: XCTestCase {
|
|
func testExample() throws {
|
|
// This is an example of a functional test case.
|
|
// Use XCTAssert and related functions to verify your tests produce the correct
|
|
// results.
|
|
XCTAssertEqual(ReaderAPI().text, "Hello, World!")
|
|
}
|
|
}
|