ziglings/exercises/102_testing.zig
Chris Boesch 193bee7d2d Added new flag 'run_test' to support test steps for test exercises.
Also created a simple exercise '102_testing' to test the new flag.
After the new build system is ready, we skip the exercise in the flow to finish the actual testing exercise.
2023-05-03 18:17:21 +02:00

10 lines
173 B
Zig

const std = @import("std");
const testing = std.testing;
fn add(a: u16, b: u16) u16 {
return a + b;
}
test "simple test" {
try testing.expect(add(41, 1) == 42);
}