mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 22:04:21 +00:00
Follow up to #19079, which made test names fully qualified. This fixes tests that now-redundant information in their test names. For example here's a fully qualified test name before the changes in this commit: "priority_queue.test.std.PriorityQueue: shrinkAndFree" and the same test's name after the changes in this commit: "priority_queue.test.shrinkAndFree"
18 lines
447 B
Zig
18 lines
447 B
Zig
const std = @import("../../std.zig");
|
|
const testing = std.testing;
|
|
const math = std.math;
|
|
const cmath = math.complex;
|
|
const Complex = cmath.Complex;
|
|
|
|
/// Returns the absolute value (modulus) of z.
|
|
pub fn abs(z: anytype) @TypeOf(z.re, z.im) {
|
|
return math.hypot(z.re, z.im);
|
|
}
|
|
|
|
const epsilon = 0.0001;
|
|
|
|
test abs {
|
|
const a = Complex(f32).init(5, 3);
|
|
const c = abs(a);
|
|
try testing.expect(math.approxEqAbs(f32, c, 5.83095, epsilon));
|
|
}
|