blob: da3575ddbf1dc9da32c5b1f40f73fb7d7ccb277b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "../test/helpers.h"
int main(void) {
struct strgrp *ctx;
plan_tests(1);
create(ctx, DEFAULT_SIMILARITY);
strgrp_free(ctx);
pass("Successfully initialised strgrp instance");
return exit_status();
}
|