1use super::util::test_run; 2use anyhow::Result; 3 4#[tokio::test] 5pub async fn async_read_resource_stream() -> Result<()> { 6 test_run(&[test_programs_artifacts::ASYNC_READ_RESOURCE_STREAM_COMPONENT]).await 7} 8 9