12 lines
384 B
Zig
12 lines
384 B
Zig
const core = @import("core");
|
|
const platform = @import("platform");
|
|
|
|
const std = @import("std");
|
|
|
|
test "test platform integration" {
|
|
try core.start_module(.{}, .{}, std.testing.allocator);
|
|
defer core.shutdown_module(std.testing.allocator);
|
|
try platform.start_module(.{}, .{}, std.testing.allocator);
|
|
defer platform.shutdown_module(std.testing.allocator);
|
|
}
|