mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-02-03 06:23:00 +00:00
1942b82ebb
Simplify development and maintenance immensely by making this a monorepository: - Convert PassepartoutKit and VPN bindings to local packages - OpenVPN/OpenSSL - WireGuard/Go - Make PassepartoutKit available via - Source submodule for production (private) - [Binary XCFramework for development](https://github.com/passepartoutvpn/passepartoutkit) - Add PassepartoutKit Demo in root - Deploy package later
11 lines
244 B
Swift
11 lines
244 B
Swift
import PassepartoutKit
|
|
import XCTest
|
|
|
|
final class Tests: XCTestCase {
|
|
func test_dummy() {
|
|
var profile = Profile.Builder(activatingModules: true)
|
|
profile.name = "foobar"
|
|
XCTAssertEqual(profile.name, "foobar")
|
|
}
|
|
}
|