capacitor-pozo-printer/ios/Tests/PrinterPluginTests/PrinterTests.swift

16 lines
439 B
Swift
Raw Normal View History

2026-03-18 09:43:44 +05:30
import XCTest
@testable import PrinterPlugin
class PrinterTests: 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 = Printer()
let value = "Hello, World!"
let result = implementation.echo(value)
XCTAssertEqual(value, result)
}
}