Files
safe_numerics/test/test_add.cpp
2013-11-04 11:44:56 -08:00

18 lines
414 B
C++

// Copyright (c) 2012 Robert Ramey
//
// 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)
bool test_add1();
bool test_add2();
bool test_add3();
int main(int argc, char * argv[]){
bool result = true;
result = test_add1();
result &= test_add2();
result &= test_add3();
return ! result ;
}