source: trunk/GDE/SINA/builddir/src/unit_tests/boilerplate.cpp

Last change on this file was 19170, checked in by westram, 2 years ago
  • sina source
    • unpack + remove tarball
    • no longer ignore sina builddir.
File size: 1.2 KB
Line 
1/*
2Copyright (c) 2006-2018 Elmar Pruesse <elmar.pruesse@ucdenver.edu>
3
4This file is part of SINA.
5
6SINA is free software: you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation, either version 3 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program.  If not, see <http://www.gnu.org/licenses/>.
18*/
19
20#define BOOST_TEST_MODULE XXX_module
21#include <boost/test/unit_test.hpp>
22
23#define EQUAL BOOST_CHECK_EQUAL
24#define CASE BOOST_AUTO_TEST_CASE
25#define FCASE BOOST_FIXTURE_TEST_CASE
26
27BOOST_AUTO_TEST_SUITE(XXX_test);
28
29
30
31
32BOOST_AUTO_TEST_SUITE_END(); // XXX_test
33
34/*
35  Local Variables:
36  mode:c++
37  c-file-style:"stroustrup"
38  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
39  indent-tabs-mode:nil
40  fill-column:99
41  End:
42*/
43// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :
Note: See TracBrowser for help on using the repository browser.