mirror of
https://github.com/mpusz/mp-units.git
synced 2025-07-30 10:27:16 +02:00
Catch2 support added (resolves #8)
This commit is contained in:
@ -62,10 +62,13 @@ DerivePointerAlignment: false
|
|||||||
# DisableFormat: false
|
# DisableFormat: false
|
||||||
# ExperimentalAutoDetectBinPacking: false
|
# ExperimentalAutoDetectBinPacking: false
|
||||||
# FixNamespaceComments: true
|
# FixNamespaceComments: true
|
||||||
# ForEachMacros:
|
ForEachMacros:
|
||||||
# - foreach
|
- foreach
|
||||||
# - Q_FOREACH
|
- Q_FOREACH
|
||||||
# - BOOST_FOREACH
|
- BOOST_FOREACH
|
||||||
|
- GIVEN
|
||||||
|
- WHEN
|
||||||
|
- THEN
|
||||||
IncludeBlocks: Merge
|
IncludeBlocks: Merge
|
||||||
IncludeCategories:
|
IncludeCategories:
|
||||||
- Regex: '^".*'
|
- Regex: '^".*'
|
||||||
|
@ -45,7 +45,8 @@ class UnitsConan(ConanFile):
|
|||||||
exports = ["LICENSE.md"]
|
exports = ["LICENSE.md"]
|
||||||
settings = "os", "compiler", "build_type", "arch"
|
settings = "os", "compiler", "build_type", "arch"
|
||||||
requires = (
|
requires = (
|
||||||
"range-v3/0.9.1@ericniebler/stable"
|
"range-v3/0.9.1@ericniebler/stable",
|
||||||
|
"Catch2/2.10.0@catchorg/stable"
|
||||||
)
|
)
|
||||||
scm = {
|
scm = {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -20,5 +20,6 @@
|
|||||||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
# SOFTWARE.
|
# SOFTWARE.
|
||||||
|
|
||||||
add_subdirectory(unit_test)
|
add_subdirectory(unit_test/runtime)
|
||||||
|
add_subdirectory(unit_test/static)
|
||||||
add_subdirectory(metabench)
|
add_subdirectory(metabench)
|
||||||
|
@ -20,16 +20,12 @@
|
|||||||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
# SOFTWARE.
|
# SOFTWARE.
|
||||||
|
|
||||||
# unit tests
|
add_executable(unit_tests_runtime
|
||||||
add_library(unit_tests
|
catch_main.cpp
|
||||||
test_custom_units.cpp
|
math_test.cpp
|
||||||
test_dimension.cpp
|
|
||||||
test_quantity.cpp
|
|
||||||
test_ratio.cpp
|
|
||||||
test_type_list.cpp
|
|
||||||
test_units.cpp
|
|
||||||
)
|
)
|
||||||
target_link_libraries(unit_tests
|
target_link_libraries(unit_tests_runtime
|
||||||
PRIVATE
|
PRIVATE
|
||||||
mp::units
|
mp::units
|
||||||
|
CONAN_PKG::Catch2
|
||||||
)
|
)
|
2
test/unit_test/runtime/catch_main.cpp
Normal file
2
test/unit_test/runtime/catch_main.cpp
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
#define CATCH_CONFIG_MAIN
|
||||||
|
#include <catch2/catch.hpp>
|
85
test/unit_test/runtime/math_test.cpp
Normal file
85
test/unit_test/runtime/math_test.cpp
Normal file
@ -0,0 +1,85 @@
|
|||||||
|
// The MIT License (MIT)
|
||||||
|
//
|
||||||
|
// Copyright (c) 2018 Mateusz Pusz
|
||||||
|
//
|
||||||
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
// in the Software without restriction, including without limitation the rights
|
||||||
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
// furnished to do so, subject to the following conditions:
|
||||||
|
//
|
||||||
|
// The above copyright notice and this permission notice shall be included in all
|
||||||
|
// copies or substantial portions of the Software.
|
||||||
|
//
|
||||||
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
// SOFTWARE.
|
||||||
|
|
||||||
|
#include "units/math.h"
|
||||||
|
#include "print_helpers.h"
|
||||||
|
#include "units/dimensions/area.h"
|
||||||
|
#include <catch2/catch.hpp>
|
||||||
|
|
||||||
|
using namespace units;
|
||||||
|
|
||||||
|
// classical
|
||||||
|
|
||||||
|
TEST_CASE("pow<N>() on quantity changes the value and the dimension accordingly", "[math][pow]")
|
||||||
|
{
|
||||||
|
// CHECK(pow<0>(2m) == 2);
|
||||||
|
CHECK(pow<1>(2m) == 2m);
|
||||||
|
CHECK(pow<2>(2m) == 4sq_m);
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST_CASE("sqrt() on quantity changes the value and the dimension accordingly", "[math][sqrt]")
|
||||||
|
{
|
||||||
|
REQUIRE(sqrt(4sq_m) == 2m);
|
||||||
|
}
|
||||||
|
|
||||||
|
// BDD style
|
||||||
|
|
||||||
|
SCENARIO("quantities should work with pow<N>()", "[math][pow]")
|
||||||
|
{
|
||||||
|
GIVEN("A quantity q") {
|
||||||
|
auto q = 2m;
|
||||||
|
|
||||||
|
REQUIRE(q.count() == 2);
|
||||||
|
|
||||||
|
WHEN("pow<1>(q) is called") {
|
||||||
|
auto res = pow<1>(q);
|
||||||
|
|
||||||
|
THEN("the same quantity is received") {
|
||||||
|
REQUIRE(res == q);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
WHEN("pow<2>(q) is called") {
|
||||||
|
auto res = pow<2>(q);
|
||||||
|
|
||||||
|
THEN("both the value and dimension is raised to the exponent 2") {
|
||||||
|
REQUIRE(res == 4sq_m);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
SCENARIO("quantities should work with sqrt()", "[math][sqrt]")
|
||||||
|
{
|
||||||
|
GIVEN("A quantity q") {
|
||||||
|
auto q = 4sq_m;
|
||||||
|
|
||||||
|
REQUIRE(q.count() == 4);
|
||||||
|
|
||||||
|
WHEN("sqrt(q) is called") {
|
||||||
|
auto res = sqrt(q);
|
||||||
|
|
||||||
|
THEN("both the value and dimension are square rooted") {
|
||||||
|
REQUIRE(res == 2m);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
41
test/unit_test/runtime/print_helpers.h
Normal file
41
test/unit_test/runtime/print_helpers.h
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
// The MIT License (MIT)
|
||||||
|
//
|
||||||
|
// Copyright (c) 2018 Mateusz Pusz
|
||||||
|
//
|
||||||
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
// in the Software without restriction, including without limitation the rights
|
||||||
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
// furnished to do so, subject to the following conditions:
|
||||||
|
//
|
||||||
|
// The above copyright notice and this permission notice shall be included in all
|
||||||
|
// copies or substantial portions of the Software.
|
||||||
|
//
|
||||||
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
// SOFTWARE.
|
||||||
|
|
||||||
|
#include "units/dimensions/area.h"
|
||||||
|
|
||||||
|
// TODO Remove when a text formatting is implemented
|
||||||
|
|
||||||
|
namespace units {
|
||||||
|
|
||||||
|
template<typename Rep>
|
||||||
|
std::ostream& operator<<(std::ostream& os, const quantity<metre, Rep>& value)
|
||||||
|
{
|
||||||
|
return os << value.count() << "m";
|
||||||
|
}
|
||||||
|
|
||||||
|
template<typename Rep>
|
||||||
|
std::ostream& operator<<(std::ostream& os, const quantity<square_metre, Rep>& value)
|
||||||
|
{
|
||||||
|
return os << value.count() << "m^2";
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
35
test/unit_test/static/CMakeLists.txt
Normal file
35
test/unit_test/static/CMakeLists.txt
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
# The MIT License (MIT)
|
||||||
|
#
|
||||||
|
# Copyright (c) 2018 Mateusz Pusz
|
||||||
|
#
|
||||||
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
# of this software and associated documentation files (the "Software"), to deal
|
||||||
|
# in the Software without restriction, including without limitation the rights
|
||||||
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
# copies of the Software, and to permit persons to whom the Software is
|
||||||
|
# furnished to do so, subject to the following conditions:
|
||||||
|
#
|
||||||
|
# The above copyright notice and this permission notice shall be included in all
|
||||||
|
# copies or substantial portions of the Software.
|
||||||
|
#
|
||||||
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
# SOFTWARE.
|
||||||
|
|
||||||
|
add_library(unit_tests_static
|
||||||
|
custom_unit_test.cpp
|
||||||
|
dimension_test.cpp
|
||||||
|
math_test.cpp
|
||||||
|
quantity_test.cpp
|
||||||
|
ratio_test.cpp
|
||||||
|
type_list_test.cpp
|
||||||
|
unit_test.cpp
|
||||||
|
)
|
||||||
|
target_link_libraries(unit_tests_static
|
||||||
|
PRIVATE
|
||||||
|
mp::units
|
||||||
|
)
|
34
test/unit_test/static/math_test.cpp
Normal file
34
test/unit_test/static/math_test.cpp
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
// The MIT License (MIT)
|
||||||
|
//
|
||||||
|
// Copyright (c) 2018 Mateusz Pusz
|
||||||
|
//
|
||||||
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
// in the Software without restriction, including without limitation the rights
|
||||||
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
// furnished to do so, subject to the following conditions:
|
||||||
|
//
|
||||||
|
// The above copyright notice and this permission notice shall be included in all
|
||||||
|
// copies or substantial portions of the Software.
|
||||||
|
//
|
||||||
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
// SOFTWARE.
|
||||||
|
|
||||||
|
#include "units/dimensions/area.h"
|
||||||
|
#include "units/math.h"
|
||||||
|
|
||||||
|
using namespace units;
|
||||||
|
|
||||||
|
namespace {
|
||||||
|
|
||||||
|
static_assert(std::is_same_v<decltype(pow<1>(2m)), decltype(2m)>);
|
||||||
|
static_assert(std::is_same_v<decltype(pow<2>(2m)), decltype(4sq_m)>);
|
||||||
|
static_assert(std::is_same_v<decltype(sqrt(4sq_m)), decltype(2m)>);
|
||||||
|
|
||||||
|
} // namespace
|
@ -20,6 +20,7 @@
|
|||||||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
// SOFTWARE.
|
// SOFTWARE.
|
||||||
|
|
||||||
|
#include "units/bits/type_list.h"
|
||||||
#include "units/dimension.h"
|
#include "units/dimension.h"
|
||||||
#include <utility>
|
#include <utility>
|
||||||
|
|
@ -20,26 +20,24 @@
|
|||||||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
// SOFTWARE.
|
// SOFTWARE.
|
||||||
|
|
||||||
#include <units/dimensions/time.h>
|
|
||||||
#include <units/dimensions/length.h>
|
|
||||||
#include <units/dimensions/mass.h>
|
|
||||||
#include <units/dimensions/current.h>
|
|
||||||
#include <units/dimensions/temperature.h>
|
|
||||||
#include <units/dimensions/substance.h>
|
|
||||||
#include <units/dimensions/luminous_intensity.h>
|
|
||||||
|
|
||||||
#include <units/dimensions/frequency.h>
|
|
||||||
#include <units/dimensions/force.h>
|
|
||||||
#include <units/dimensions/pressure.h>
|
|
||||||
#include <units/dimensions/energy.h>
|
|
||||||
#include <units/dimensions/power.h>
|
|
||||||
#include <units/dimensions/electric_charge.h>
|
|
||||||
#include <units/dimensions/voltage.h>
|
|
||||||
#include <units/dimensions/capacitance.h>
|
|
||||||
|
|
||||||
#include <units/dimensions/velocity.h>
|
|
||||||
#include <units/dimensions/acceleration.h>
|
#include <units/dimensions/acceleration.h>
|
||||||
#include <units/dimensions/area.h>
|
#include <units/dimensions/area.h>
|
||||||
|
#include <units/dimensions/capacitance.h>
|
||||||
|
#include <units/dimensions/current.h>
|
||||||
|
#include <units/dimensions/electric_charge.h>
|
||||||
|
#include <units/dimensions/energy.h>
|
||||||
|
#include <units/dimensions/force.h>
|
||||||
|
#include <units/dimensions/frequency.h>
|
||||||
|
#include <units/dimensions/length.h>
|
||||||
|
#include <units/dimensions/luminous_intensity.h>
|
||||||
|
#include <units/dimensions/mass.h>
|
||||||
|
#include <units/dimensions/power.h>
|
||||||
|
#include <units/dimensions/pressure.h>
|
||||||
|
#include <units/dimensions/substance.h>
|
||||||
|
#include <units/dimensions/temperature.h>
|
||||||
|
#include <units/dimensions/time.h>
|
||||||
|
#include <units/dimensions/velocity.h>
|
||||||
|
#include <units/dimensions/voltage.h>
|
||||||
#include <units/dimensions/volume.h>
|
#include <units/dimensions/volume.h>
|
||||||
|
|
||||||
#include <utility>
|
#include <utility>
|
||||||
@ -71,8 +69,6 @@ namespace {
|
|||||||
|
|
||||||
static_assert(5in + 8cm == 207mm);
|
static_assert(5in + 8cm == 207mm);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* ************** DERIVED DIMENSIONS WITH NAMED UNITS **************** */
|
/* ************** DERIVED DIMENSIONS WITH NAMED UNITS **************** */
|
||||||
|
|
||||||
// frequency
|
// frequency
|
||||||
@ -114,7 +110,6 @@ namespace {
|
|||||||
|
|
||||||
static_assert(10C / 10V == 1F);
|
static_assert(10C / 10V == 1F);
|
||||||
|
|
||||||
|
|
||||||
/* ************** DERIVED DIMENSIONS IN TERMS OF BASE UNITS **************** */
|
/* ************** DERIVED DIMENSIONS IN TERMS OF BASE UNITS **************** */
|
||||||
|
|
||||||
// velocity
|
// velocity
|
Reference in New Issue
Block a user