mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +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"
19 lines
454 B
Zig
19 lines
454 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 angular component (in radians) of z.
|
|
pub fn arg(z: anytype) @TypeOf(z.re, z.im) {
|
|
return math.atan2(z.im, z.re);
|
|
}
|
|
|
|
const epsilon = 0.0001;
|
|
|
|
test arg {
|
|
const a = Complex(f32).init(5, 3);
|
|
const c = arg(a);
|
|
try testing.expect(math.approxEqAbs(f32, c, 0.540420, epsilon));
|
|
}
|