added small defmt test #88
14
src/lib.rs
14
src/lib.rs
@ -893,6 +893,8 @@ pub mod zc {
|
|||||||
pub(crate) mod tests {
|
pub(crate) mod tests {
|
||||||
use std::collections::HashSet;
|
use std::collections::HashSet;
|
||||||
|
|
||||||
|
#[allow(unused_imports)]
|
||||||
|
use crate::ByteConversionError;
|
||||||
#[cfg(feature = "serde")]
|
#[cfg(feature = "serde")]
|
||||||
use crate::CcsdsPrimaryHeader;
|
use crate::CcsdsPrimaryHeader;
|
||||||
use crate::{
|
use crate::{
|
||||||
@ -1266,4 +1268,16 @@ pub(crate) mod tests {
|
|||||||
let sp_header = SpHeader::new_from_apid_checked(0x03).unwrap();
|
let sp_header = SpHeader::new_from_apid_checked(0x03).unwrap();
|
||||||
assert_eq!(sp_header.apid(), 0x03);
|
assert_eq!(sp_header.apid(), 0x03);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(feature = "defmt")]
|
||||||
|
fn is_defmt_format<T: defmt::Format>(_t: T) {}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
#[cfg(feature = "defmt")]
|
||||||
|
fn test_defmt_format() {
|
||||||
|
is_defmt_format(ByteConversionError::ToSliceTooSmall {
|
||||||
|
found: 1,
|
||||||
|
expected: 2,
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user