summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorVasile Vilvoiu <vasi@vilvoiu.ro>2023-05-06 21:12:43 +0300
committerVasile Vilvoiu <vasi@vilvoiu.ro>2023-05-06 21:12:43 +0300
commitc2d00c0aeb6908dd22ee8c0134d0f857b522e4a6 (patch)
tree2b8a6bd4caf6fd47609e94cae4f0246074bcf89f /test
parentf2f4792f824cd64e679cdc859fb008769541257b (diff)
Adjust copyright notice year.
Diffstat (limited to 'test')
-rw-r--r--test/test-color-map.cpp2
-rw-r--r--test/test-fft.cpp4
-rw-r--r--test/test-input-parser.cpp2
-rw-r--r--test/test-input-reader.cpp4
-rw-r--r--test/test-renderer.cpp2
-rw-r--r--test/test-value-map.cpp4
-rw-r--r--test/test-window-function.cpp4
-rw-r--r--test/test.cpp4
-rw-r--r--test/test.hpp2
-rw-r--r--test/tone.py2
10 files changed, 15 insertions, 15 deletions
diff --git a/test/test-color-map.cpp b/test/test-color-map.cpp
index b397b84..5e6825d 100644
--- a/test/test-color-map.cpp
+++ b/test/test-color-map.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2020-2021 Vasile Vilvoiu <vasi@vilvoiu.ro>
+ * Copyright (c) 2020-2023 Vasile Vilvoiu <vasi@vilvoiu.ro>
*
* specgram is free software; you can redistribute it and/or modify
* it under the terms of the MIT license. See LICENSE for details.
diff --git a/test/test-fft.cpp b/test/test-fft.cpp
index 1a9aeea..4b1689e 100644
--- a/test/test-fft.cpp
+++ b/test/test-fft.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2020-2021 Vasile Vilvoiu <vasi@vilvoiu.ro>
+ * Copyright (c) 2020-2023 Vasile Vilvoiu <vasi@vilvoiu.ro>
*
* specgram is free software; you can redistribute it and/or modify
* it under the terms of the MIT license. See LICENSE for details.
@@ -352,4 +352,4 @@ TEST(TestFFT, Resample)
EXPECT_EQ(out.size(), 4);
for (auto v : out) { EXPECT_EQ(v, 0.0); }
}
-} \ No newline at end of file
+}
diff --git a/test/test-input-parser.cpp b/test/test-input-parser.cpp
index 083f40a..606706b 100644
--- a/test/test-input-parser.cpp
+++ b/test/test-input-parser.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2020-2021 Vasile Vilvoiu <vasi@vilvoiu.ro>
+ * Copyright (c) 2020-2023 Vasile Vilvoiu <vasi@vilvoiu.ro>
*
* specgram is free software; you can redistribute it and/or modify
* it under the terms of the MIT license. See LICENSE for details.
diff --git a/test/test-input-reader.cpp b/test/test-input-reader.cpp
index 0b8b772..000b237 100644
--- a/test/test-input-reader.cpp
+++ b/test/test-input-reader.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2020-2021 Vasile Vilvoiu <vasi@vilvoiu.ro>
+ * Copyright (c) 2020-2023 Vasile Vilvoiu <vasi@vilvoiu.ro>
*
* specgram is free software; you can redistribute it and/or modify
* it under the terms of the MIT license. See LICENSE for details.
@@ -125,4 +125,4 @@ TEST(TestInputReader, AsyncInputReader)
check_same(expected, output, block_size);
}
-} \ No newline at end of file
+}
diff --git a/test/test-renderer.cpp b/test/test-renderer.cpp
index 2fd6df9..3669085 100644
--- a/test/test-renderer.cpp
+++ b/test/test-renderer.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2020-2021 Vasile Vilvoiu <vasi@vilvoiu.ro>
+ * Copyright (c) 2020-2023 Vasile Vilvoiu <vasi@vilvoiu.ro>
*
* specgram is free software; you can redistribute it and/or modify
* it under the terms of the MIT license. See LICENSE for details.
diff --git a/test/test-value-map.cpp b/test/test-value-map.cpp
index 940e70f..66d584c 100644
--- a/test/test-value-map.cpp
+++ b/test/test-value-map.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2020-2021 Vasile Vilvoiu <vasi@vilvoiu.ro>
+ * Copyright (c) 2020-2023 Vasile Vilvoiu <vasi@vilvoiu.ro>
*
* specgram is free software; you can redistribute it and/or modify
* it under the terms of the MIT license. See LICENSE for details.
@@ -126,4 +126,4 @@ TEST(TestValueMap, LogarithmicMapDomain)
EXPECT_LE(std::abs(map->Map(RealWindow { 0.0 })[0]), epsilon);
EXPECT_LE(std::abs(map->Map(RealWindow { 100.0 })[0] - 1.0), epsilon);
-} \ No newline at end of file
+}
diff --git a/test/test-window-function.cpp b/test/test-window-function.cpp
index 959d81e..d8308a3 100644
--- a/test/test-window-function.cpp
+++ b/test/test-window-function.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2020-2021 Vasile Vilvoiu <vasi@vilvoiu.ro>
+ * Copyright (c) 2020-2023 Vasile Vilvoiu <vasi@vilvoiu.ro>
*
* specgram is free software; you can redistribute it and/or modify
* it under the terms of the MIT license. See LICENSE for details.
@@ -131,4 +131,4 @@ TEST(TestWindowFunction, TypeNone)
{
EXPECT_EQ(WindowFunction::Build(WindowFunctionType::kNone, 1), nullptr);
EXPECT_EQ(WindowFunction::Build(WindowFunctionType::kNone, 10), nullptr);
-} \ No newline at end of file
+}
diff --git a/test/test.cpp b/test/test.cpp
index db573ab..b926bc2 100644
--- a/test/test.cpp
+++ b/test/test.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2020-2021 Vasile Vilvoiu <vasi@vilvoiu.ro>
+ * Copyright (c) 2020-2023 Vasile Vilvoiu <vasi@vilvoiu.ro>
*
* specgram is free software; you can redistribute it and/or modify
* it under the terms of the MIT license. See LICENSE for details.
@@ -10,4 +10,4 @@ int main(int argc, char **argv)
{
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
-} \ No newline at end of file
+}
diff --git a/test/test.hpp b/test/test.hpp
index 9e85ea2..6a6d155 100644
--- a/test/test.hpp
+++ b/test/test.hpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2020-2021 Vasile Vilvoiu <vasi@vilvoiu.ro>
+ * Copyright (c) 2020-2023 Vasile Vilvoiu <vasi@vilvoiu.ro>
*
* specgram is free software; you can redistribute it and/or modify
* it under the terms of the MIT license. See LICENSE for details.
diff --git a/test/tone.py b/test/tone.py
index 441837f..3efeffd 100644
--- a/test/tone.py
+++ b/test/tone.py
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2020-2021 Vasile Vilvoiu <vasi@vilvoiu.ro>
+# Copyright (c) 2020-2023 Vasile Vilvoiu <vasi@vilvoiu.ro>
#
# specgram is free software; you can redistribute it and/or modify
# it under the terms of the MIT license. See LICENSE for details.