swift-bridge 0.1.59

Generate FFI bindings for safe interop between Rust and Swift.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
//  CallbackTests.swift
//  SwiftRustIntegrationTestRunnerTests
//
//  Created by Frankie Nwafili on 9/11/22.
//

import XCTest
@testable import SwiftRustIntegrationTestRunner

class CallbackTests: XCTestCase {
    
    /// Run our tests where Rust passes a callback to Swift.
    func testRustCallsSwift() throws {
        test_callbacks_rust_calls_swift()
    }
}