Updated copyright year from 2016 to 2017

This commit is contained in:
Benoit Blanchon
2017-01-06 21:07:34 +01:00
parent 7e7074502f
commit 671329a3e9
139 changed files with 365 additions and 235 deletions

View File

@ -1,12 +1,12 @@
// Copyright Benoit Blanchon 2014-2016
// Copyright Benoit Blanchon 2014-2017
// MIT License
//
// Arduino JSON library
// https://github.com/bblanchon/ArduinoJson
// If you like this project, please add a star!
#include <gtest/gtest.h>
#include <ArduinoJson.h>
#include <gtest/gtest.h>
class Issue34 : public testing::Test {
protected:
@ -23,18 +23,34 @@ class Issue34 : public testing::Test {
}
};
TEST_F(Issue34, int8_t) { test_with_value<int8_t>(1); }
TEST_F(Issue34, int8_t) {
test_with_value<int8_t>(1);
}
TEST_F(Issue34, uint8_t) { test_with_value<uint8_t>(2); }
TEST_F(Issue34, uint8_t) {
test_with_value<uint8_t>(2);
}
TEST_F(Issue34, int16_t) { test_with_value<int16_t>(3); }
TEST_F(Issue34, int16_t) {
test_with_value<int16_t>(3);
}
TEST_F(Issue34, uint16_t) { test_with_value<uint16_t>(4); }
TEST_F(Issue34, uint16_t) {
test_with_value<uint16_t>(4);
}
TEST_F(Issue34, int32_t) { test_with_value<int32_t>(5); }
TEST_F(Issue34, int32_t) {
test_with_value<int32_t>(5);
}
TEST_F(Issue34, uint32_t) { test_with_value<uint32_t>(6); }
TEST_F(Issue34, uint32_t) {
test_with_value<uint32_t>(6);
}
TEST_F(Issue34, float) { test_with_value<float>(7); }
TEST_F(Issue34, float) {
test_with_value<float>(7);
}
TEST_F(Issue34, double) { test_with_value<double>(8); }
TEST_F(Issue34, double) {
test_with_value<double>(8);
}