removed some errors, added basic unit tests
[senf.git] / Socket / Protocols / UN / UNDatagramSocketHandle.test.cc
1 // $Id$
2 //
3 // Copyright (C) 2007 
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the
17 // Free Software Foundation, Inc.,
18 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
20 /** \file
21     \brief UNDatagramSocketHandle.test unit tests */
22
23 //#include "UNDatagramSocketHandle.test.hh"
24 //#include "UNDatagramSocketHandle.test.ih"
25
26 // Custom includes
27 #include "UNDatagramSocketHandle.hh"
28
29 #include <boost/test/auto_unit_test.hpp>
30 #include <boost/test/test_tools.hpp>
31
32 #define prefix_
33 ///////////////////////////////cc.p////////////////////////////////////////
34
35 BOOST_AUTO_UNIT_TEST(unDatagramSocketHandle)
36 {
37     std::string testS = "/tmp/senfTestSocket";
38     senf::UNSocketAddress addr (testS) ; 
39     //senf::UNDatagramSocketHandle init_client(addr); 
40     senf::UNDatagramClientSocketHandle inputSocket(senf::UNSocketAddress(tests));
41 }
42
43
44 ///////////////////////////////cc.e////////////////////////////////////////
45 #undef prefix_
46
47 \f
48 // Local Variables:
49 // mode: c++
50 // fill-column: 100
51 // comment-column: 40
52 // c-file-style: "senf"
53 // indent-tabs-mode: nil
54 // ispell-local-dictionary: "american"
55 // compile-command: "scons -u test"
56 // End: