2019-11-10 19:51:25 +01:00
|
|
|
// 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.
|
|
|
|
|
2019-12-11 08:07:13 +01:00
|
|
|
#include "units/physical/si/area.h"
|
|
|
|
#include "units/physical/si/frequency.h"
|
|
|
|
#include "units/physical/si/power.h"
|
|
|
|
#include "units/physical/si/velocity.h"
|
|
|
|
#include "units/physical/si/volume.h"
|
|
|
|
#include "units/physical/si/surface_tension.h"
|
2019-12-17 12:29:19 +01:00
|
|
|
#include "units/physical/us/area.h"
|
|
|
|
#include "units/physical/us/velocity.h"
|
|
|
|
#include "units/physical/us/volume.h"
|
2019-11-10 19:51:25 +01:00
|
|
|
#include "units/format.h"
|
|
|
|
#include <catch2/catch.hpp>
|
|
|
|
|
2019-12-11 08:07:13 +01:00
|
|
|
using namespace units::si;
|
2019-12-17 12:29:19 +01:00
|
|
|
using namespace units::us;
|
2019-11-10 19:51:25 +01:00
|
|
|
|
|
|
|
TEST_CASE("fmt::format on synthesized unit symbols", "[text][fmt]")
|
|
|
|
{
|
|
|
|
SECTION("time")
|
|
|
|
{
|
2019-11-12 16:55:11 +01:00
|
|
|
CHECK(fmt::format("{}", 1ns) == "1 ns");
|
|
|
|
CHECK(fmt::format("{}", 1us) == "1 µs");
|
|
|
|
CHECK(fmt::format("{}", 1ms) == "1 ms");
|
2019-11-10 19:51:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("length")
|
|
|
|
{
|
2019-11-12 16:55:11 +01:00
|
|
|
CHECK(fmt::format("{}", 1mm) == "1 mm");
|
|
|
|
CHECK(fmt::format("{}", 1cm) == "1 cm");
|
|
|
|
CHECK(fmt::format("{}", 1km) == "1 km");
|
2019-11-10 19:51:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("mass")
|
|
|
|
{
|
2019-11-12 16:55:11 +01:00
|
|
|
CHECK(fmt::format("{}", 1kg) == "1 kg");
|
2019-11-10 19:51:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("area")
|
|
|
|
{
|
2020-01-09 10:03:41 +01:00
|
|
|
CHECK(fmt::format("{}", 1m2) == "1 m²");
|
|
|
|
CHECK(fmt::format("{}", 1mm2) == "1 mm²");
|
|
|
|
CHECK(fmt::format("{}", 1cm2) == "1 cm²");
|
|
|
|
CHECK(fmt::format("{}", 1km2) == "1 km²");
|
|
|
|
CHECK(fmt::format("{}", 1ft2) == "1 ft²");
|
2019-11-10 19:51:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("volume")
|
|
|
|
{
|
2020-01-09 10:03:41 +01:00
|
|
|
CHECK(fmt::format("{}", 1m3) == "1 m³");
|
|
|
|
CHECK(fmt::format("{}", 1mm3) == "1 mm³");
|
|
|
|
CHECK(fmt::format("{}", 1cm3) == "1 cm³");
|
|
|
|
CHECK(fmt::format("{}", 1km3) == "1 km³");
|
|
|
|
CHECK(fmt::format("{}", 1ft3) == "1 ft³");
|
2019-11-10 19:51:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("frequency")
|
|
|
|
{
|
2019-11-12 16:55:11 +01:00
|
|
|
CHECK(fmt::format("{}", 1mHz) == "1 mHz");
|
|
|
|
CHECK(fmt::format("{}", 1kHz) == "1 kHz");
|
|
|
|
CHECK(fmt::format("{}", 1MHz) == "1 MHz");
|
|
|
|
CHECK(fmt::format("{}", 1GHz) == "1 GHz");
|
|
|
|
CHECK(fmt::format("{}", 1THz) == "1 THz");
|
2019-11-10 19:51:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("velocity")
|
|
|
|
{
|
2019-11-12 16:55:11 +01:00
|
|
|
CHECK(fmt::format("{}", 1mps) == "1 m/s");
|
|
|
|
CHECK(fmt::format("{}", 1kmph) == "1 km/h");
|
|
|
|
CHECK(fmt::format("{}", 1mph) == "1 mi/h");
|
2019-11-10 19:51:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("acceleration")
|
|
|
|
{
|
2020-01-09 10:03:41 +01:00
|
|
|
CHECK(fmt::format("{}", 1mps2) == "1 m/s²");
|
2019-11-10 19:51:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("energy")
|
|
|
|
{
|
2019-11-12 16:55:11 +01:00
|
|
|
CHECK(fmt::format("{}", 1mJ) == "1 mJ");
|
|
|
|
CHECK(fmt::format("{}", 1kJ) == "1 kJ");
|
|
|
|
CHECK(fmt::format("{}", 1MJ) == "1 MJ");
|
|
|
|
CHECK(fmt::format("{}", 1GJ) == "1 GJ");
|
2019-11-10 19:51:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("power")
|
|
|
|
{
|
2019-11-12 16:55:11 +01:00
|
|
|
CHECK(fmt::format("{}", 1mW) == "1 mW");
|
|
|
|
CHECK(fmt::format("{}", 1kW) == "1 kW");
|
|
|
|
CHECK(fmt::format("{}", 1MW) == "1 MW");
|
|
|
|
CHECK(fmt::format("{}", 1GW) == "1 GW");
|
2019-11-10 19:51:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("surface tension")
|
|
|
|
{
|
2019-11-12 16:55:11 +01:00
|
|
|
CHECK(fmt::format("{}", 1Npm) == "1 N/m");
|
2019-11-10 19:51:25 +01:00
|
|
|
}
|
|
|
|
}
|