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

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

Ensure(initialize_returns_a_new_vertex) {
  Vertex *a = graph_initialize('a');

  assert_that(a, is_not_equal_to(NULL));
}

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

  add_test(x, three_equals_three);

  return x;
}