use
crate::
VulkanInt;
use
std::
ops::
Deref;
#[
test
]
fn below() {
assert_eq!(
*VulkanInt
::new(
-1488
),
-54
);
}
#[
test
]
fn r#in() {
assert_eq!(
*VulkanInt
::new(
-1488
),
27
);
}
#[
test
]
fn over() {
assert_eq!(
*VulkanInt
::new(
-1488
),
54
);
}