summaryrefslogtreecommitdiff
path: root/unittest/examples/no_plan.t.c
blob: 67029c7962fe68f3adc28c833ecb55e4f9b74f9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

#include <stdlib.h>
#include <tap.h>

/*
  Sometimes, the number of tests is not known beforehand. In those
  cases, the plan can be omitted and will instead be written at the
  end of the test (inside exit_status()).

  Use this sparingly, it is a last resort: planning how many tests you
  are going to run will help you catch that offending case when some
  tests are skipped for an unknown reason.
*/
int main() {
  ok(1, NULL);
  ok(1, NULL);
  ok(1, NULL);
  return exit_status();
}