]> git.llucax.com Git - software/posixx.git/blob - test/socket/unix/sockaddr.cpp
Add Boost License
[software/posixx.git] / test / socket / unix / sockaddr.cpp
1 // Copyright Leandro Lucarella 2008 - 2010.
2 // Distributed under the Boost Software License, Version 1.0.
3 // (See accompanying file COPYING or copy at
4 // http://www.boost.org/LICENSE_1_0.txt)
5
6
7
8 #include "common.hpp" // PATH{1,2}, test_address{1,2}
9 #include <boost/test/unit_test.hpp> // unit testing stuff
10
11 BOOST_AUTO_TEST_CASE( socket_unix_sockaddr_test )
12 {
13         BOOST_CHECK_EQUAL(test_address1.path(), PATH1);
14         BOOST_CHECK_EQUAL(test_address2.path(), PATH2);
15 }
16