Files
metacryst 637c9e4674 init
2026-01-09 11:14:27 -06:00

16 lines
490 B
Swift

import XCTest
@testable import GeolocationCapacitorPlugin
class GeolocationPluginCapacitorTests: 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 = GeolocationPluginCapacitor()
let value = "Hello, World!"
let result = implementation.echo(value)
XCTAssertEqual(value, result)
}
}