use anyhow::Result;
use super::util::test_run;
#[allow(
dead_code,
reason = "here only to make the `assert_test_exists` macro happy"
)]
pub fn async_backpressure_callee() {}
#[tokio::test]
pub async fn async_backpressure_caller() -> Result<()> {
test_run(&[
test_programs_artifacts::ASYNC_BACKPRESSURE_CALLER_COMPONENT,
test_programs_artifacts::ASYNC_BACKPRESSURE_CALLEE_COMPONENT,
])
.await
}