Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
1d5609f
converting url_launcher from objc to swift
chrisdlangham Aug 18, 2023
d5727dd
converting tests to swift
chrisdlangham Aug 22, 2023
c4e55fb
converting tests to swift
chrisdlangham Aug 22, 2023
050d6b3
fixing issue where pigeon and method channels were not setup right
chrisdlangham Aug 22, 2023
5278199
formatting
chrisdlangham Aug 22, 2023
55a345b
reverting unintentional local changes
chrisdlangham Aug 22, 2023
8356d7a
fixing issues with Ui tests
chrisdlangham Aug 22, 2023
120b2d4
formating
chrisdlangham Aug 22, 2023
1316f3c
Merge branch 'main' into coverting-objc-to-swift
chrisdlangham Aug 22, 2023
7bd3553
updating version and change log
chrisdlangham Aug 22, 2023
2741de4
converting tests to swift
chrisdlangham Aug 22, 2023
495de26
converting unit tests to swift
chrisdlangham Aug 23, 2023
c898698
Merge branch 'main' into converting-url-launcher-ios-tests-to-swift
chrisdlangham Aug 23, 2023
6a6c8d5
updating change log
chrisdlangham Aug 23, 2023
254b9af
resolving merge conflicts
chrisdlangham Aug 23, 2023
869f18f
formatting
chrisdlangham Aug 23, 2023
1120baa
making test class final and private
chrisdlangham Aug 29, 2023
1429244
adding example app for platform
chrisdlangham Sep 2, 2023
a4a6683
formatting and addressing linting errors
chrisdlangham Sep 2, 2023
30a95d5
updating version and change log
chrisdlangham Sep 2, 2023
52623eb
Merge branch 'main' into platform-example-app
chrisdlangham Sep 12, 2023
8a6442d
cleaning up example pubspec
chrisdlangham Sep 12, 2023
2f05893
renaming org in example app and removing web
chrisdlangham Sep 12, 2023
167353a
updating change log
chrisdlangham Sep 12, 2023
8152b72
adds comments
chrisdlangham Sep 12, 2023
dc4de8a
addresses validation steps
chrisdlangham Sep 12, 2023
0c1651e
adds platform example android app to dependabot
chrisdlangham Sep 13, 2023
9f591e3
resolving merge conflicts
chrisdlangham Sep 13, 2023
13cd002
updated tests and formated pigeon file
chrisdlangham Sep 13, 2023
7e486d7
updates test name
chrisdlangham Sep 13, 2023
f8f5f0b
updates changelog
chrisdlangham Sep 13, 2023
827204a
Update CHANGELOG.md
chrisdlangham Sep 14, 2023
30568fd
Merge branch 'main' into coverting-objc-to-swift
chrisdlangham Sep 14, 2023
2360fc7
Merge branch 'main' into platform-example-app
chrisdlangham Sep 14, 2023
d320c35
deletes unknown file
chrisdlangham Sep 14, 2023
6b5e4cd
uses latest version of pigeon
chrisdlangham Sep 15, 2023
3651a97
updates change log
chrisdlangham Sep 15, 2023
257b7cc
moves setting up the pigeon api to the register function instead of t…
chrisdlangham Sep 15, 2023
3a1190e
Merge branch 'coverting-objc-to-swift' into platform-example-app
chrisdlangham Sep 28, 2023
1fb2d10
Revert "Merge branch 'coverting-objc-to-swift' into platform-example-…
chrisdlangham Sep 28, 2023
f71e763
Merge branch 'main' into platform-example-app
chrisdlangham Sep 28, 2023
7b0e411
attempt to fix linux web tests
chrisdlangham Sep 30, 2023
6f86e64
cleans up comments and boilerplate code
chrisdlangham Sep 30, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
making test class final and private
  • Loading branch information
chrisdlangham committed Aug 29, 2023
commit 1120baaf7eb215a9a813961381f9c9cfeee20cc0
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import XCTest

@testable import url_launcher_ios

class URLLauncherTests: XCTestCase {
final private class URLLauncherTests: XCTestCase {
var plugin: URLLauncherPlugin!
var launcher: FakeLauncher!

Expand Down Expand Up @@ -116,7 +116,7 @@ class URLLauncherTests: XCTestCase {

}

class FakeLauncher: Launcher {
final fileprivate class FakeLauncher: Launcher {
var passedOptions: [UIApplication.OpenExternalURLOptionsKey: Any]?

func canOpenURL(_ url: URL) -> Bool {
Expand All @@ -132,7 +132,7 @@ class FakeLauncher: Launcher {
}
}

class FakeFlutterBinaryMessenger: NSObject, FlutterBinaryMessenger {
final fileprivate class FakeFlutterBinaryMessenger: NSObject, FlutterBinaryMessenger {
func send(onChannel channel: String, message: Data?) {}

func send(
Expand Down