summaryrefslogtreecommitdiffstats
path: root/tests/memisam_tests.cpp
diff options
context:
space:
mode:
authorDouglas Rumbaugh <dbr4@psu.edu>2023-06-05 11:49:29 -0400
committerDouglas Rumbaugh <dbr4@psu.edu>2023-06-05 11:49:29 -0400
commitf8f3cb6c55b085fa260c7f80644d5ef057d4a070 (patch)
tree6d34cf94962758b09fe0425f39e2cdbb17e9dd01 /tests/memisam_tests.cpp
parent59ab2a92a5902b25fbc227bab549eb6f2dd84486 (diff)
downloaddynamic-extension-f8f3cb6c55b085fa260c7f80644d5ef057d4a070.tar.gz
Test refactoring: pulled record stripping function to testing.h
Diffstat (limited to 'tests/memisam_tests.cpp')
-rw-r--r--tests/memisam_tests.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/memisam_tests.cpp b/tests/memisam_tests.cpp
index aaf0b51..713a732 100644
--- a/tests/memisam_tests.cpp
+++ b/tests/memisam_tests.cpp
@@ -206,17 +206,6 @@ START_TEST(t_irs_query)
END_TEST
-template <RecordInterface R>
-std::vector<R> strip_wrapping(std::vector<Wrapped<R>> vec) {
- std::vector<R> out(vec.size());
- for (size_t i=0; i<vec.size(); i++) {
- out[i] = vec[i].rec;
- }
-
- return out;
-}
-
-
START_TEST(t_irs_query_merge)
{
size_t n=1000;