summaryrefslogtreecommitdiff
path: root/test/math/wrap.test.cpp
diff options
context:
space:
mode:
authorBruno de Oliveira Abinader <bruno@mapbox.com>2017-05-15 15:04:23 +0300
committerBruno de Oliveira Abinader <bruno@mapbox.com>2017-05-15 15:33:12 +0300
commitc69e8fc0a6ee61f3b9ced7eef9212103b5962119 (patch)
tree562ee7467200f247f471274ed10a1f8bfb1a7dae /test/math/wrap.test.cpp
parentd4f6cac686bdd92b913a8877c5a984dc0082b7a8 (diff)
downloadqtlocation-mapboxgl-c69e8fc0a6ee61f3b9ced7eef9212103b5962119.tar.gz
[tidy] Use NOLINT instead of per-folder .clang-tidy
Diffstat (limited to 'test/math/wrap.test.cpp')
-rw-r--r--test/math/wrap.test.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/math/wrap.test.cpp b/test/math/wrap.test.cpp
index 5610257a5c..8d12f3b100 100644
--- a/test/math/wrap.test.cpp
+++ b/test/math/wrap.test.cpp
@@ -5,22 +5,22 @@
using namespace mbgl;
-TEST(Math, WrapHigherValue) {
+TEST(Math, WrapHigherValue) { // NOLINT
ASSERT_DOUBLE_EQ(4.0, util::wrap(16.0, 0.0, 12.0));
}
-TEST(Math, WrapLowerValue) {
+TEST(Math, WrapLowerValue) { // NOLINT
ASSERT_DOUBLE_EQ(9.0, util::wrap(-3.0, 0.0, 12.0));
}
-TEST(Math, WrapInRangeValue) {
+TEST(Math, WrapInRangeValue) { // NOLINT
ASSERT_DOUBLE_EQ(4.0, util::wrap(4.0, 0.0, 12.0));
}
-TEST(Math, WrapMaxValue) {
+TEST(Math, WrapMaxValue) { // NOLINT
ASSERT_DOUBLE_EQ(0.0, util::wrap(12.0, 0.0, 12.0));
}
-TEST(Math, WrapMinValue) {
+TEST(Math, WrapMinValue) { // NOLINT
ASSERT_DOUBLE_EQ(0.0, util::wrap(0.0, 0.0, 12.0));
}