#[static_test]
Example
use static_test;
You can specify arbitrary types as parameters and as the return type of every
function you mark as #[static_test]
. The bodies of those functions will never
actually be executed, however every static_assert!
and static_unreachable!
will still be indirectly checked.
If the compiler can't prove that every static_assert!
will always hold true
and that every static_unreachable!
will always be unreachable then an error
will be generated at link time.
Every function marked as #[static_test]
will be turned into a #[test]
function.
The assume!
, static_assert!
and static_unreachable!
macros are defined
by the procedural macro and are only available inside functions marked as #[static_test]
.
Caveats
- This requires at least Rust 1.40.
- This requires the linker to run, so it will have no effect on
cargo check
. - This will only work when you compile your code with optimizations turned on,
as it depends on the optimizer to remove unreachable
static_assert!
s andstatic_unreachable!
s. - If an assertion fails the error message will not be great.
Acknowledgments
This is inspired by the no_panic crate.
License
Licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.