aboutsummaryrefslogtreecommitdiff
path: root/doc/langref/testing_failure.zig
blob: 84c86e2436b3577f331e160c77e1e9b1d883bad2 (plain)
1
2
3
4
5
6
7
8
9
10
11
const std = @import("std");

test "expect this to fail" {
    try std.testing.expect(false);
}

test "expect this to succeed" {
    try std.testing.expect(true);
}

// test_error=