Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
doc
langref
testing_failure.zig
pretty
plain
permalink
blame
history
•
11 lines
•
180 B
1
const std = @import("std");
2
3
test "expect this to fail" {
4
try std.testing.expect(false);
5
}
6
7
test "expect this to succeed" {
8
try std.testing.expect(true);
9
}
10
11
// test_error=