2020-07-26 14:21:06 +02:00
|
|
|
const std = @import("std");
|
2019-09-08 21:48:23 +02:00
|
|
|
const mock_framework = @import("mock_framework.zig");
|
2019-09-29 13:55:34 +02:00
|
|
|
pub const initTest = mock_framework.initTest;
|
|
|
|
pub const freeTest = mock_framework.freeTest;
|
|
|
|
pub const addTestParams = mock_framework.addTestParams;
|
|
|
|
pub const addConsumeFunction = mock_framework.addConsumeFunction;
|
|
|
|
pub const addRepeatFunction = mock_framework.addRepeatFunction;
|
2019-09-08 21:48:23 +02:00
|
|
|
|
2020-07-26 14:21:06 +02:00
|
|
|
pub fn log(comptime level: std.log.Level, comptime format: []const u8, args: anytype) void {
|
|
|
|
// Just print to std print
|
|
|
|
std.debug.print(format, args);
|
2019-09-08 21:48:23 +02:00
|
|
|
}
|