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