use crate::{
description::Description,
matcher::{Matcher, MatcherBase, MatcherResult},
};
use num_traits::float::Float;
use std::fmt::Debug;
pub fn is_infinite() -> IsInfiniteMatcher {
IsInfiniteMatcher
}
#[derive(MatcherBase)]
pub struct IsInfiniteMatcher;
impl<T: Float + Debug + Copy> Matcher<T> for IsInfiniteMatcher {
fn matches(&self, actual: T) -> MatcherResult {
actual.is_infinite().into()
}
fn describe(&self, matcher_result: MatcherResult) -> Description {
if matcher_result.into() { "is Infinite" } else { "isn't Infinite" }.into()
}
}
#[cfg(test)]
mod tests {
use crate::prelude::*;
use crate::Result;
#[test]
fn matches_f32_pos_infinity() -> Result<()> {
verify_that!(f32::INFINITY, is_infinite())
}
#[test]
fn matches_f32_neg_infinity() -> Result<()> {
verify_that!(f32::NEG_INFINITY, is_infinite())
}
#[test]
fn does_not_match_f32_number() -> Result<()> {
verify_that!(0.0f32, not(is_infinite()))
}
#[test]
fn does_not_match_f32_nan() -> Result<()> {
verify_that!(f32::NAN, not(is_finite()))
}
#[test]
fn matches_f64_pos_infinity() -> Result<()> {
verify_that!(f64::INFINITY, is_infinite())
}
#[test]
fn matches_f64_neg_infinity() -> Result<()> {
verify_that!(f64::NEG_INFINITY, is_infinite())
}
#[test]
fn does_not_match_f64_number() -> Result<()> {
verify_that!(0.0f64, not(is_infinite()))
}
#[test]
fn does_not_match_f64_nan() -> Result<()> {
verify_that!(f64::NAN, not(is_finite()))
}
}