Files
khadhroony-solana-project/crates/ksp-app-raw-transaction-ingest-desk/tests/public_api.rs
2026-09-13 09:57:39 +02:00

15 lines
572 B
Rust

// file: crates/ksp-app-raw-transaction-ingest-desk/tests/public_api.rs
// version: 1
//! Public API checks for the KSP Raw Transaction Ingest desktop application library.
#![forbid(unsafe_code)]
#![deny(unreachable_pub)]
#![warn(missing_docs)]
#[test]
fn run_entry_point_is_available_from_crate_root() {
let run_entry_point: fn(&[std::ffi::OsString]) -> ksp_core_lib::Result<()> = ksp_app_raw_transaction_ingest_desk_lib::run;
assert_eq!(std::mem::size_of_val(&run_entry_point), std::mem::size_of::<fn(&[std::ffi::OsString]) -> ksp_core_lib::Result<()>>());
}