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.
This commit is contained in:
Chris Boesch 2023-05-03 18:17:21 +02:00
parent 02a35e8a09
commit 497df878a7
2 changed files with 19 additions and 0 deletions

10
exercises/102_testing.zig Normal file
View file

@ -0,0 +1,10 @@
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);
}