// 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::num::basic::integers::PrimitiveInt; use malachite_base::num::basic::signeds::PrimitiveSigned; use malachite_base::num::basic::unsigneds::PrimitiveUnsigned; use malachite_base::test_util::generators::{signed_pair_gen, unsigned_pair_gen_var_27}; #[test] fn test_wrapping_mul() { fn test(x: T, y: T, out: T) { assert_eq!(x.wrapping_mul(y), out); let mut x = x; x.wrapping_mul_assign(y); assert_eq!(x, out); } test::(123, 456, 56088); test::(123, 200, 24); test::(123, -45, -5535); test::(123, 45, -97); test::(-123, 45, 97); } fn wrapping_mul_properties_helper_unsigned() { unsigned_pair_gen_var_27::().test_properties(|(x, y)| { let mut product = x; product.wrapping_mul_assign(y); assert_eq!(product, x.wrapping_mul(y)); assert_eq!(y.wrapping_mul(x), product); }); } fn wrapping_mul_properties_helper_signed() { signed_pair_gen::().test_properties(|(x, y)| { let mut product = x; product.wrapping_mul_assign(y); assert_eq!(product, x.wrapping_mul(y)); assert_eq!(y.wrapping_mul(x), product); }); } #[test] fn wrapping_mul_properties() { apply_fn_to_unsigneds!(wrapping_mul_properties_helper_unsigned); apply_fn_to_signeds!(wrapping_mul_properties_helper_signed); }