A SpaceTraders Agent

run all tests

altagos.dev 0234dd57 a34a381e

verified
+15
+5
src/agent/root.zig
··· 1 1 pub const config = @import("config.zig"); 2 + 3 + test { 4 + const testing = @import("std").testing; 5 + testing.refAllDeclsRecursive(@This()); 6 + }
+5
src/meta/root.zig
··· 35 35 .fields = &combined, 36 36 } }); 37 37 } 38 + 39 + test { 40 + const testing = @import("std").testing; 41 + testing.refAllDeclsRecursive(@This()); 42 + }
+5
src/st/root.zig
··· 2 2 pub const models = @import("models.zig"); 3 3 4 4 pub const fleet = @import("fleet.zig"); 5 + 6 + test { 7 + const testing = @import("std").testing; 8 + testing.refAllDeclsRecursive(@This()); 9 + }