aboutsummaryrefslogtreecommitdiff
path: root/src/set/test_set_api.c
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2013-04-16 18:32:56 +0000
committerFlorian Dold <florian.dold@gmail.com>2013-04-16 18:32:56 +0000
commite77e2db24ef3681f207521e539a2c1ca3584efda (patch)
tree1bb5afd004527fa6ce1ca213571dcbc60fa55ef6 /src/set/test_set_api.c
parentc5a460ec22898e2ce2c5c5b1d1a2abb083b8fc8d (diff)
downloadgnunet-e77e2db24ef3681f207521e539a2c1ca3584efda.tar.gz
gnunet-e77e2db24ef3681f207521e539a2c1ca3584efda.zip
added skeleton for gnunet set
Diffstat (limited to 'src/set/test_set_api.c')
-rw-r--r--src/set/test_set_api.c39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/set/test_set_api.c b/src/set/test_set_api.c
new file mode 100644
index 000000000..f9e027a86
--- /dev/null
+++ b/src/set/test_set_api.c
@@ -0,0 +1,39 @@
1/*
2 This file is part of GNUnet.
3 (C) 2012 Christian Grothoff (and other contributing authors)
4
5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published
7 by the Free Software Foundation; either version 3, or (at your
8 option) any later version.
9
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with GNUnet; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA.
19*/
20
21/**
22 * @file set/test_set_api.c
23 * @brief testcase for consensus_api.c
24 */
25#include "platform.h"
26#include "gnunet_util_lib.h"
27#include "gnunet_testing_lib.h"
28
29int
30main (int argc, char **argv)
31{
32 int ret;
33
34 ret = GNUNET_TESTING_peer_run ("test_set_api",
35 "test_set.conf",
36 &run, NULL);
37 return ret;
38}
39