bare_test_macros

Macro test_setup

Source
test_setup!() { /* proc-macro */ }
Expand description

Setup the test entry point.

ยงExample

#![no_std]
#![no_main]
#![feature(custom_test_frameworks)]
#![test_runner(bare_test::test_runner)]
#![reexport_test_harness_main = "test_main"]

bare_test::test_setup!();