2
0
mirror of https://github.com/boostorg/test.git synced 2026-02-11 12:12:11 +00:00
Files
test/test/usage-variants-ts/single-header-multiunit-2-test.cpp
2018-09-24 00:47:13 +02:00

27 lines
687 B
C++

// (C) Copyright Gennadiy Rozental 2001-2015.
// Distributed under 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 http://www.boost.org/libs/test for the library home page.
//
// File : $RCSfile$
//
// Version : $Revision$
//
// Description : header-only usage variant test
// ***************************************************************************
// Boost.Test
#include <boost/test/unit_test.hpp>
BOOST_AUTO_TEST_CASE( test2 )
{
int i = 1;
BOOST_CHECK( i*i == 1 );
}
//____________________________________________________________________________//
// EOF