https://github.com/sanger-pathogens/gubbins
Raw File
Tip revision: cae13d840311c5e2930421b1606ec76e2e3e78eb authored by andrewjpage on 22 August 2014, 13:46:31 UTC
Merge pull request #103 from andrewjpage/print_excluded_sequences
Tip revision: cae13d8
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