11 lines
317 B
Swift
11 lines
317 B
Swift
import XCTest
|
|
import UIKit
|
|
@testable import PortfolioJournal
|
|
|
|
final class OnboardingViewTests: XCTestCase {
|
|
func testAppSettingsURLMatchesSystemConstant() {
|
|
let expected = URL(string: UIApplication.openSettingsURLString)
|
|
XCTAssertEqual(OnboardingQuickStartView.appSettingsURL(), expected)
|
|
}
|
|
}
|