nalgebra/nalgebra-sparse/tests/unit.rs

16 lines
364 B
Rust
Raw Normal View History

2020-07-14 00:44:40 +08:00
//! Unit tests
#[cfg(not(all(
feature = "proptest-support",
feature = "compare",
feature = "io",
)))]
compile_error!(
"Please enable the `proptest-support`, `compare` and `io` features in order to compile and run the tests.
Example: `cargo test -p nalgebra-sparse --features proptest-support,compare,io`"
);
2020-11-18 20:54:14 +08:00
2020-07-14 00:44:40 +08:00
mod unit_tests;
#[macro_use]
2021-01-26 00:26:27 +08:00
pub mod common;