dumon-geolocation/ios/Tests/DumonGeolocationPluginTests/DumonGeolocationPluginTests.swift
2025-06-14 10:01:19 +08:00

16 lines
466 B
Swift

import XCTest
@testable import DumonGeolocationPlugin
class DumonGeolocationTests: XCTestCase {
func testEcho() {
// This is an example of a functional test case for a plugin.
// Use XCTAssert and related functions to verify your tests produce the correct results.
let implementation = DumonGeolocation()
let value = "Hello, World!"
let result = implementation.echo(value)
XCTAssertEqual(value, result)
}
}