summaryrefslogtreecommitdiff
path: root/src/03/graph_test.c
blob: fca7b45d74d661443d7b705d7d47d31658a1c4f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "graph.h"
#include <cgreen/cgreen.h>
#include <string.h>

Ensure(three_equals_three) {
  assert_that(3, is_equal_to(3));
}

TestSuite *graph_tests() {
  TestSuite *x = create_test_suite();

  add_test(x, three_equals_three);

  return x;
}