mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-02-09 01:12:05 +00:00
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")
|
||
|
}
|
||
|
}
|