1
0
Fork 0
arangodb/tests/Basics/CompileTimeStrlenTest.cpp

49 lines
1.8 KiB
C++

////////////////////////////////////////////////////////////////////////////////
/// @brief test suite for HashSet class
///
/// @file
///
/// DISCLAIMER
///
/// Copyright 2004-2012 triagens GmbH, Cologne, Germany
///
/// Licensed under the Apache License, Version 2.0 (the "License");
/// you may not use this file except in compliance with the License.
/// You may obtain a copy of the License at
///
/// http://www.apache.org/licenses/LICENSE-2.0
///
/// Unless required by applicable law or agreed to in writing, software
/// distributed under the License is distributed on an "AS IS" BASIS,
/// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/// See the License for the specific language governing permissions and
/// limitations under the License.
///
/// Copyright holder is triAGENS GmbH, Cologne, Germany
///
/// @author Jan Steemann
/// @author Copyright 2007-2012, triAGENS GmbH, Cologne, Germany
////////////////////////////////////////////////////////////////////////////////
#include "Basics/Common.h"
#include "Basics/compile-time-strlen.h"
#include "catch.hpp"
TEST_CASE("CompileTimeStrlenTest", "[CompileTimeStrlen]") {
/// @brief test compileTimeStrlen
SECTION("test_compile_time_strlen") {
static_assert(arangodb::compileTimeStrlen("") == 0, "invalid compile time strlen value");
static_assert(arangodb::compileTimeStrlen("foo") == 3, "invalid compile time strlen value");
static_assert(arangodb::compileTimeStrlen("foobarbaz") == 9, "invalid compile time strlen value");
static_assert(arangodb::compileTimeStrlen("the quick brown fox") == 19, "invalid compile time strlen value");
CHECK(arangodb::compileTimeStrlen("") == 0U);
CHECK(arangodb::compileTimeStrlen("foo") == 3U);
CHECK(arangodb::compileTimeStrlen("foobarbaz") == 9U);
CHECK(arangodb::compileTimeStrlen("the quick brown fox") == 19U);
}
}