summaryrefslogtreecommitdiffstats
path: root/vespaclient-container-plugin
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@verizonmedia.com>2020-09-18 15:57:58 +0200
committerBjørn Christian Seime <bjorncs@verizonmedia.com>2020-09-18 15:58:00 +0200
commit65586893bb603a6c433b9c0047293ae605e654be (patch)
tree79c409aa9e73f46cbbba7fc1a15ebb8d166246ba /vespaclient-container-plugin
parent560c144bc72db8a3335742f6c659d1d312b122a5 (diff)
Move tests package containing classes being tested
Package private members can now be used from tests
Diffstat (limited to 'vespaclient-container-plugin')
-rw-r--r--vespaclient-container-plugin/src/test/java/com/yahoo/vespa/http/server/CollectingMetric.java (renamed from vespaclient-container-plugin/src/test/java/com/yahoo/feedhandler/v3/CollectingMetric.java)2
-rw-r--r--vespaclient-container-plugin/src/test/java/com/yahoo/vespa/http/server/FeedTesterV3.java (renamed from vespaclient-container-plugin/src/test/java/com/yahoo/feedhandler/v3/FeedTesterV3.java)5
2 files changed, 2 insertions, 5 deletions
diff --git a/vespaclient-container-plugin/src/test/java/com/yahoo/feedhandler/v3/CollectingMetric.java b/vespaclient-container-plugin/src/test/java/com/yahoo/vespa/http/server/CollectingMetric.java
index fb04172eb79..5635db90a09 100644
--- a/vespaclient-container-plugin/src/test/java/com/yahoo/feedhandler/v3/CollectingMetric.java
+++ b/vespaclient-container-plugin/src/test/java/com/yahoo/vespa/http/server/CollectingMetric.java
@@ -1,5 +1,5 @@
// Copyright 2019 Oath Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-package com.yahoo.feedhandler.v3;
+package com.yahoo.vespa.http.server;
import com.yahoo.jdisc.Metric;
diff --git a/vespaclient-container-plugin/src/test/java/com/yahoo/feedhandler/v3/FeedTesterV3.java b/vespaclient-container-plugin/src/test/java/com/yahoo/vespa/http/server/FeedTesterV3.java
index a6cc52e8aea..4b16822f804 100644
--- a/vespaclient-container-plugin/src/test/java/com/yahoo/feedhandler/v3/FeedTesterV3.java
+++ b/vespaclient-container-plugin/src/test/java/com/yahoo/vespa/http/server/FeedTesterV3.java
@@ -1,5 +1,5 @@
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-package com.yahoo.feedhandler.v3;
+package com.yahoo.vespa.http.server;
import com.google.common.base.Splitter;
import com.yahoo.container.handler.ThreadpoolConfig;
@@ -23,9 +23,6 @@ import com.yahoo.vespa.http.client.config.FeedParams;
import com.yahoo.vespa.http.client.core.ErrorCode;
import com.yahoo.vespa.http.client.core.Headers;
import com.yahoo.vespa.http.client.core.OperationStatus;
-import com.yahoo.vespa.http.server.FeedHandlerV3;
-import com.yahoo.vespa.http.server.MetricNames;
-import com.yahoo.vespa.http.server.ReplyContext;
import org.junit.Test;
import org.mockito.stubbing.Answer;