blob: 5977a07b087399b2a89c7bc128ecec3d194ad09c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//! Test suite. Most tests are fairly basic, as they're not testing the SFML itself
const std = @import("std");
test "all sfml tests" {
const sf = @import("sfml.zig");
std.testing.refAllDecls(sf.system);
std.testing.refAllDecls(sf.window);
std.testing.refAllDecls(sf.graphics);
std.testing.refAllDecls(sf.audio);
}
|