git/t/unit-tests/t-oidmap.c

#include "test-lib.h"
#include "lib-oid.h"
#include "oidmap.h"
#include "hash.h"
#include "hex.h"

/*
 * Elements we will put in oidmap structs are made of a key: the entry.oid
 * field, which is of type struct object_id, and a value: the name field (could
 * be a refname for example).
 */
struct test_entry {};

static const char *const key_val[][2] =;

static void setup(void (*f)(struct oidmap *map))
{}

static void t_replace(struct oidmap *map)
{}

static void t_get(struct oidmap *map)
{}

static void t_remove(struct oidmap *map)
{}

static int key_val_contains(struct test_entry *entry, char seen[])
{}

static void t_iterate(struct oidmap *map)
{}

int cmd_main(int argc UNUSED, const char **argv UNUSED)
{}