예제 #1
0
int main(int argc, char **argv)
{
  plan_tests(19 + 9 + PolarStore::Count());

  TestBasic();
  TestFileImport();
  TestBuiltInPolars();

  return exit_status();
}
예제 #2
0
파일: TestPolars.cpp 프로젝트: ppara/XCSoar
int main(int argc, char **argv)
{
  unsigned num_tests = 19 + 9 + PolarStore::Count();

  // NOTE: Plausibility tests disabled for now since many fail
  if (0)
    num_tests += ARRAY_SIZE(performanceData) * 5;

  plan_tests(num_tests);

  TestBasic();
  TestFileImport();
  TestBuiltInPolars();

  // NOTE: Plausibility tests disabled for now since many fail
  if (0)
    TestBuiltInPolarsPlausibility();

  return exit_status();
}