Small reorganization of unit tests

This commit is contained in:
Alexander Afanasyev
2012-03-05 21:24:49 -08:00
parent b71beabf0c
commit 150f14d0ea
4 changed files with 71 additions and 14 deletions
+25
View File
@@ -0,0 +1,25 @@
/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2012 University of California, Los Angeles
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation;
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Author: Zhenkai Zhu <zhenkai@cs.ucla.edu>
* 卞超轶 Chaoyi Bian <bcy@pku.edu.cn>
* Alexander Afanasyev <alexander.afanasyev@ucla.edu>
*/
#define BOOST_TEST_MODULE Digest
#include <boost/test/unit_test.hpp>
-12
View File
@@ -20,13 +20,11 @@
* Alexander Afanasyev <alexander.afanasyev@ucla.edu>
*/
#define BOOST_TEST_MODULE Digest
#include <boost/test/unit_test.hpp>
#include <boost/test/output_test_stream.hpp>
using boost::test_tools::output_test_stream;
#include "../model/sync-digest.h"
#include <boost/lexical_cast.hpp>
#include <iostream>
#include <sstream>
@@ -99,13 +97,3 @@ BOOST_AUTO_TEST_CASE (DigestComparison)
BOOST_AUTO_TEST_SUITE_END()
//////////////////////////////////////////////////////////////////////////////////////////
BOOST_AUTO_TEST_SUITE(LeafTestSuite)
BOOST_AUTO_TEST_CASE (LeafBase)
{
Leaf test;
}
BOOST_AUTO_TEST_SUITE_END()
+41
View File
@@ -0,0 +1,41 @@
/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2012 University of California, Los Angeles
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation;
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Author: Zhenkai Zhu <zhenkai@cs.ucla.edu>
* 卞超轶 Chaoyi Bian <bcy@pku.edu.cn>
* Alexander Afanasyev <alexander.afanasyev@ucla.edu>
*/
#include <boost/test/unit_test.hpp>
#include <boost/test/output_test_stream.hpp>
using boost::test_tools::output_test_stream;
#include "../model/sync-full-leaf.h"
#include "../model/sync-diff-leaf.h"
using namespace Sync;
using namespace std;
using namespace boost;
BOOST_AUTO_TEST_SUITE(LeafTestSuite)
BOOST_AUTO_TEST_CASE (LeafBase)
{
// Leaf test;
}
BOOST_AUTO_TEST_SUITE_END()
+5 -2
View File
@@ -29,11 +29,14 @@ def build (bld):
uselib = 'BOOST BOOST_IOSTREAMS SSL'
)
bld.program (target="testapp",
source = "test/testapp.cc",
# Unit tests
bld.program (target="utit-tests",
source = bld.path.ant_glob(['test/**/*.cc']),
features=['cxx', 'cxxprogram'],
use = 'BOOST_TEST sync')
# doxygen docs
from waflib.Build import BuildContext
class doxy (BuildContext):
cmd = "doxygen"