Attribute Macro test

Source
#[test]
Expand description

A procedural macro to annotate test functions.

This macro wraps the annotated async function to be executed in a blocking context using embassy_futures::block_on, similar to how other modules handle async operations.

ยงRequirements

Test functions must:

  • Be async
  • Have no arguments
  • Have no return type (or return unit type ())