Helper: build a fingerprint hex string for a properties_json. */
| 557 | |
| 558 | /* Helper: build a fingerprint hex string for a properties_json. */ |
| 559 | static void make_fp_props(char *buf, int bufsize, const cbm_minhash_t *fp) { |
| 560 | char hex[CBM_MINHASH_HEX_LEN + 1]; |
| 561 | cbm_minhash_to_hex(fp, hex, sizeof(hex)); |
| 562 | snprintf(buf, bufsize, "{\"fp\":\"%s\"}", hex); |
| 563 | } |
| 564 | |
| 565 | TEST(pass_similarity_creates_edges) { |
| 566 | cbm_minhash_t fp; |
no test coverage detected