diff --git a/test/unit/Base64Test.cpp b/test/unit/Base64Test.cpp index 274e202788..029fc6d691 100644 --- a/test/unit/Base64Test.cpp +++ b/test/unit/Base64Test.cpp @@ -1,3 +1,10 @@ +/*----------------------------------------------------------------------------*/ +/* Copyright (c) FIRST 2015. All Rights Reserved. */ +/* Open Source Software - may be modified and shared by FRC teams. The code */ +/* must be accompanied by the FIRST BSD license file in the root directory of */ +/* the project. */ +/*----------------------------------------------------------------------------*/ + #include "Base64.h" #include "gtest/gtest.h" diff --git a/test/unit/StringValueTest.cpp b/test/unit/StringValueTest.cpp index 7a4b923248..dd74d17d49 100644 --- a/test/unit/StringValueTest.cpp +++ b/test/unit/StringValueTest.cpp @@ -1,3 +1,10 @@ +/*----------------------------------------------------------------------------*/ +/* Copyright (c) FIRST 2015. All Rights Reserved. */ +/* Open Source Software - may be modified and shared by FRC teams. The code */ +/* must be accompanied by the FIRST BSD license file in the root directory of */ +/* the project. */ +/*----------------------------------------------------------------------------*/ + #include "StringValueTest.h" namespace ntimpl { diff --git a/test/unit/StringValueTest.h b/test/unit/StringValueTest.h index a8e31f4fd3..25c2737420 100644 --- a/test/unit/StringValueTest.h +++ b/test/unit/StringValueTest.h @@ -1,3 +1,13 @@ +/*----------------------------------------------------------------------------*/ +/* Copyright (c) FIRST 2015. All Rights Reserved. */ +/* Open Source Software - may be modified and shared by FRC teams. The code */ +/* must be accompanied by the FIRST BSD license file in the root directory of */ +/* the project. */ +/*----------------------------------------------------------------------------*/ + +#ifndef NT_TEST_STRINGVALUETEST_H_ +#define NT_TEST_STRINGVALUETEST_H_ + #include "Value.h" #include "gtest/gtest.h" @@ -10,3 +20,5 @@ class StringValueTest : public ::testing::Test { }; } // namespace ntimpl + +#endif diff --git a/test/unit/ValueTest.cpp b/test/unit/ValueTest.cpp index 7a7f3b912b..6e0dbb9a1e 100644 --- a/test/unit/ValueTest.cpp +++ b/test/unit/ValueTest.cpp @@ -1,3 +1,10 @@ +/*----------------------------------------------------------------------------*/ +/* Copyright (c) FIRST 2015. All Rights Reserved. */ +/* Open Source Software - may be modified and shared by FRC teams. The code */ +/* must be accompanied by the FIRST BSD license file in the root directory of */ +/* the project. */ +/*----------------------------------------------------------------------------*/ + #include "ValueTest.h" namespace ntimpl { diff --git a/test/unit/ValueTest.h b/test/unit/ValueTest.h index 105e3ed33d..9e6d78fafc 100644 --- a/test/unit/ValueTest.h +++ b/test/unit/ValueTest.h @@ -1,3 +1,13 @@ +/*----------------------------------------------------------------------------*/ +/* Copyright (c) FIRST 2015. All Rights Reserved. */ +/* Open Source Software - may be modified and shared by FRC teams. The code */ +/* must be accompanied by the FIRST BSD license file in the root directory of */ +/* the project. */ +/*----------------------------------------------------------------------------*/ + +#ifndef NT_TEST_VALUETEST_H_ +#define NT_TEST_VALUETEST_H_ + #include "Value.h" #include "gtest/gtest.h" @@ -10,3 +20,5 @@ class ValueTest : public ::testing::Test { }; } // namespace ntimpl + +#endif diff --git a/test/unit/WireEncoderTest.cpp b/test/unit/WireEncoderTest.cpp index fbd95011ba..65e7c009ca 100644 --- a/test/unit/WireEncoderTest.cpp +++ b/test/unit/WireEncoderTest.cpp @@ -1,3 +1,10 @@ +/*----------------------------------------------------------------------------*/ +/* Copyright (c) FIRST 2015. All Rights Reserved. */ +/* Open Source Software - may be modified and shared by FRC teams. The code */ +/* must be accompanied by the FIRST BSD license file in the root directory of */ +/* the project. */ +/*----------------------------------------------------------------------------*/ + #include "WireEncoder.h" #include "gtest/gtest.h" diff --git a/test/unit/leb128Test.cpp b/test/unit/leb128Test.cpp index 95def52528..d17bd01a2b 100644 --- a/test/unit/leb128Test.cpp +++ b/test/unit/leb128Test.cpp @@ -1,3 +1,10 @@ +/*----------------------------------------------------------------------------*/ +/* Copyright (c) FIRST 2015. All Rights Reserved. */ +/* Open Source Software - may be modified and shared by FRC teams. The code */ +/* must be accompanied by the FIRST BSD license file in the root directory of */ +/* the project. */ +/*----------------------------------------------------------------------------*/ + //===- llvm/unittest/Support/LEB128Test.cpp - LEB128 function tests -------===// // // The LLVM Compiler Infrastructure diff --git a/test/unit/main.cpp b/test/unit/main.cpp index 419b71c52d..0ee6dc06e1 100644 --- a/test/unit/main.cpp +++ b/test/unit/main.cpp @@ -1,3 +1,10 @@ +/*----------------------------------------------------------------------------*/ +/* Copyright (c) FIRST 2015. All Rights Reserved. */ +/* Open Source Software - may be modified and shared by FRC teams. The code */ +/* must be accompanied by the FIRST BSD license file in the root directory of */ +/* the project. */ +/*----------------------------------------------------------------------------*/ + #include "gtest/gtest.h" int main(int argc, char **argv)