Files
filesystem/test/default_name_check_test.cpp
Stefan Slapeta 4c75d616cf Replaced BOOST_TEST
[SVN r27048]
2005-02-03 10:54:24 +00:00

27 lines
822 B
C++

// default_name_check_test program ------------------------------------------//
// Copyright Beman Dawes 2003.
// Use, modification, and distribution is subject to the Boost Software
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
// See library home page at http://www.boost.org/libs/filesystem
#include <boost/filesystem/operations.hpp>
#include <boost/filesystem/exception.hpp>
namespace fs = boost::filesystem;
using boost::filesystem::path;
#include <boost/test/minimal.hpp>
int test_main( int, char*[] )
{
BOOST_CHECK( path::default_name_check_writable() );
path::default_name_check( fs::no_check );
BOOST_CHECK( !path::default_name_check_writable() );
BOOST_CHECK( path::default_name_check() == fs::no_check );
return 0;
}