// 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 malachite_base::rational_sequences::RationalSequence; use malachite_base::test_util::generators::unsigned_rational_sequence_gen; #[test] pub fn test_is_empty() { fn test(non_repeating: &[u8], repeating: &[u8], out: bool) { let xs = RationalSequence::from_slices(non_repeating, repeating); assert_eq!(xs.is_empty(), out); } test(&[], &[], true); test(&[1, 2, 3], &[], false); test(&[], &[1, 2, 3], false); test(&[1, 2, 3], &[4, 5, 6], false); } #[test] fn is_empty_properties() { unsigned_rational_sequence_gen::().test_properties(|xs| { let empty = xs.is_empty(); assert_eq!(empty, xs == RationalSequence::from_vec(vec![])); assert_eq!(empty, xs.component_len() == 0); }); }