const std = @import("std"); const testing = std.testing; pub const Entity = struct { ID: usize }; test "entity init" { const e1 = Entity { .ID = 12 }; const e2 = Entity { .ID = 21 }; testing.expect(e1.ID == 12); testing.expect(e2.ID == 21); }