Refactor tests into a separate module.
This commit is contained in:
13
test/index.zig
Normal file
13
test/index.zig
Normal file
@ -0,0 +1,13 @@
|
||||
comptime {
|
||||
_ = .{
|
||||
@import("./primitive/blockcipher/aes.zig"),
|
||||
@import("./primitive/blockcipher/operation_modes.zig"),
|
||||
@import("./primitive/digest/sha.zig"),
|
||||
@import("./primitive/streamcipher/chacha20.zig"),
|
||||
@import("./primitive/streamcipher/salsa20.zig"),
|
||||
};
|
||||
}
|
||||
|
||||
test {
|
||||
@import("std").testing.refAllDecls(@This());
|
||||
}
|
||||
Reference in New Issue
Block a user