// Copyright © 2024 Mikhail Hogrefe
//
// This file is part of Malachite.
//
// Malachite is free software: you can redistribute it and/or modify it under the terms of the GNU
// Lesser General Public License (LGPL) as published by the Free Software Foundation; either version
// 3 of the License, or (at your option) any later version. See .
use itertools::Itertools;
use malachite_base::nevers::Never;
use malachite_base::options::exhaustive::exhaustive_somes;
use std::fmt::Debug;
fn exhaustive_somes_helper(xs: &[T], out: &[Option]) {
assert_eq!(
exhaustive_somes(xs.iter().cloned())
.collect_vec()
.as_slice(),
out
);
}
#[test]
fn test_exhaustive_somes() {
exhaustive_somes_helper::(&[], &[]);
exhaustive_somes_helper(&[5], &[Some(5)]);
exhaustive_somes_helper(&[1, 2, 3], &[Some(1), Some(2), Some(3)]);
exhaustive_somes_helper(
&[Some(2), None, Some(5)],
&[Some(Some(2)), Some(None), Some(Some(5))],
);
}