You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
754 B
27 lines
754 B
import Flutter
|
|
import UIKit
|
|
import XCTest
|
|
|
|
|
|
@testable import flutter_cocos_view
|
|
|
|
// This demonstrates a simple unit test of the Swift portion of this plugin's implementation.
|
|
//
|
|
// See https://developer.apple.com/documentation/xctest for more information about using XCTest.
|
|
|
|
class RunnerTests: XCTestCase {
|
|
|
|
func testGetPlatformVersion() {
|
|
let plugin = FlutterCocosViewPlugin()
|
|
|
|
let call = FlutterMethodCall(methodName: "getPlatformVersion", arguments: [])
|
|
|
|
let resultExpectation = expectation(description: "result block must be called.")
|
|
plugin.handle(call) { result in
|
|
XCTAssertEqual(result as! String, "iOS " + UIDevice.current.systemVersion)
|
|
resultExpectation.fulfill()
|
|
}
|
|
waitForExpectations(timeout: 1)
|
|
}
|
|
|
|
}
|
|
|