const TestCase = struct
const TestCase = struct { encoded: []const u8, dot_notation: []const u8, pub fn init(comptime hex: []const u8, dot_notation: []const u8) TestCase { return .{ .encoded = &hexToBytes(hex), .dot_notation = dot_notation }; } }