blob: 896793aa0f8482f56c19c56928c2cedf29c800b2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <libempathy/empathy-utils.h>
#include "test-helper.h"
static void
test_substring (void)
{
gchar *tmp;
tmp = empathy_substring ("empathy", 2, 6);
g_assert (tmp != NULL);
g_assert (strcmp (tmp, "path") == 0);
g_free (tmp);
}
int
main (int argc,
char **argv)
{
int result;
test_init (argc, argv);
g_test_add_func ("/utils/substring", test_substring);
result = g_test_run ();
test_deinit ();
return result;
}
|