summaryrefslogtreecommitdiffstats
path: root/searchlib
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@online.no>2024-02-20 11:55:11 +0100
committerTor Egge <Tor.Egge@online.no>2024-02-20 11:55:11 +0100
commit28636841a06b5a5f69917c280bae672cec1b65fe (patch)
tree3a16611712fa2527fb1513cac6c8b44c59090e47 /searchlib
parent84d37aeaf3805a379ba0fce2b310a07ed4e24fd0 (diff)
Remove FtTestApp.
Diffstat (limited to 'searchlib')
-rw-r--r--searchlib/src/vespa/searchlib/test/CMakeLists.txt1
-rw-r--r--searchlib/src/vespa/searchlib/test/ft_test_app.cpp5
-rw-r--r--searchlib/src/vespa/searchlib/test/ft_test_app.h13
3 files changed, 0 insertions, 19 deletions
diff --git a/searchlib/src/vespa/searchlib/test/CMakeLists.txt b/searchlib/src/vespa/searchlib/test/CMakeLists.txt
index c43f4eb0cef..83e185dbfb6 100644
--- a/searchlib/src/vespa/searchlib/test/CMakeLists.txt
+++ b/searchlib/src/vespa/searchlib/test/CMakeLists.txt
@@ -4,7 +4,6 @@ vespa_add_library(searchlib_test
attribute_builder.cpp
document_weight_attribute_helper.cpp
doc_builder.cpp
- ft_test_app.cpp
ft_test_app_base.cpp
imported_attribute_fixture.cpp
initrange.cpp
diff --git a/searchlib/src/vespa/searchlib/test/ft_test_app.cpp b/searchlib/src/vespa/searchlib/test/ft_test_app.cpp
deleted file mode 100644
index 1d9d7c05d76..00000000000
--- a/searchlib/src/vespa/searchlib/test/ft_test_app.cpp
+++ /dev/null
@@ -1,5 +0,0 @@
-// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-
-#include "ft_test_app.h"
-
-FtTestApp::~FtTestApp() = default;
diff --git a/searchlib/src/vespa/searchlib/test/ft_test_app.h b/searchlib/src/vespa/searchlib/test/ft_test_app.h
deleted file mode 100644
index 432d9d80e4d..00000000000
--- a/searchlib/src/vespa/searchlib/test/ft_test_app.h
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-
-#pragma once
-
-#include "ft_test_app_base.h"
-#include <vespa/vespalib/testkit/testapp.h>
-
-/*
- * Test application used by feature unit tests.
- */
-struct FtTestApp : public vespalib::TestApp, public FtTestAppBase {
- ~FtTestApp() override;
-};