fn plasma_ffi_oid_to_hex()

in plasma-store/src/ffi/tests.rs [31:39]


fn plasma_ffi_oid_to_hex() {
    let oid: UniquePtr<ffi::ObjectID> = ffi::oid_from_binary(&[
        1u8, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
    ]);
    assert_eq!(
        "0102030405060708090a0b0c0d0e0f1011121314",
        ffi::oid_to_hex(&oid)
    );
}