1const std = @import("std");
2
3test "expect this to fail" {
4 try std.testing.expect(false);
5}
6
7test "expect this to succeed" {
8 try std.testing.expect(true);
9}
10
11// test_error=