capacitor-promocode/ios/Tests/PromoCodePluginTests/PromoCodePluginTests.swift
2025-04-13 17:56:38 -04:00

16 lines
445 B
Swift

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