File: error-enum.c

package info (click to toggle)
telepathy-glib 0.24.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 31,756 kB
  • sloc: ansic: 124,638; xml: 34,410; sh: 4,531; python: 3,528; makefile: 1,722; javascript: 211; cpp: 16
file content (22 lines) | stat: -rw-r--r-- 348 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "config.h"

#include <telepathy-glib/errors.h>

#include "tests/lib/util.h"

static void
test_tp_errors (void)
{
#include "tests/dbus/_gen/errors-check.h"
}

int
main (int argc,
      char **argv)
{
  g_test_init (&argc, &argv, NULL);

  g_test_add_func ("/test-error-enum/TP_ERROR", test_tp_errors);

  return tp_tests_run_with_bus ();
}