You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
similar to #[fluvio_future::test] but support non async function.
#[cfg(test)]
mod test {
// same as cargo test but initialize logging
#[fluvio_future::test]
fn test_add() {
assert_eq!(1+1,2);
}
// uses async runtime
#[fluvio_future::test]
async fn test_add() {
assert_eq!(1+2);
}
}
The text was updated successfully, but these errors were encountered:
similar to
#[fluvio_future::test]
but support non async function.The text was updated successfully, but these errors were encountered: