Add tests for 1.1.0 features

This commit is contained in:
alexandrev-tibco
2026-02-01 14:40:10 +01:00
parent d55b999bef
commit 2437dd647f
11 changed files with 297 additions and 29 deletions
@@ -0,0 +1,10 @@
import XCTest
import UIKit
@testable import PortfolioJournal
final class OnboardingViewTests: XCTestCase {
func testAppSettingsURLMatchesSystemConstant() {
let expected = URL(string: UIApplication.openSettingsURLString)
XCTAssertEqual(OnboardingQuickStartView.appSettingsURL(), expected)
}
}