https://github.com/sanger-pathogens/gubbins
Raw File
Tip revision: 079d890ce272b12b6edef96f9de079e40445755d authored by Nick Croucher on 06 October 2022, 09:10:49 UTC
Add correct reference files
Tip revision: 079d890
check_vcf_parsing.c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <check.h>
#include "check_vcf_parsing.h"
#include "helper_methods.h"
#include "parse_vcf.h"


START_TEST (check_parsing_of_vcf_files)
{
  // Todo insert tests
}
END_TEST


Suite * parse_vcf_suite(void)
{
  Suite *s = suite_create ("Parsing a vcf file");
  TCase *tc_parse_vcf = tcase_create ("check_parsing_of_vcf_files");
  tcase_add_test (tc_parse_vcf, check_parsing_of_vcf_files);
  suite_add_tcase (s, tc_parse_vcf);
  return s;
}
back to top