summaryrefslogtreecommitdiffstats
path: root/document
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@oath.com>2017-10-23 12:14:19 +0000
committerTor Egge <Tor.Egge@oath.com>2017-10-23 12:14:19 +0000
commitc2105574acbf1694e83b4b43fa8200fb48eb79b2 (patch)
tree094e665bed23596671614b6b9131a11fabbe5677 /document
parent116c78e48da8f099c32168c48f8fbde56a2f74a0 (diff)
Add bucket space to request bucket info command.
Diffstat (limited to 'document')
-rw-r--r--document/src/vespa/document/test/CMakeLists.txt1
-rw-r--r--document/src/vespa/document/test/make_bucket_space.cpp12
-rw-r--r--document/src/vespa/document/test/make_bucket_space.h13
3 files changed, 26 insertions, 0 deletions
diff --git a/document/src/vespa/document/test/CMakeLists.txt b/document/src/vespa/document/test/CMakeLists.txt
index f16bfe0144a..1620a8fad39 100644
--- a/document/src/vespa/document/test/CMakeLists.txt
+++ b/document/src/vespa/document/test/CMakeLists.txt
@@ -1,6 +1,7 @@
# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
vespa_add_library(document_test OBJECT
SOURCES
+ make_bucket_space.cpp
make_document_bucket.cpp
DEPENDS
)
diff --git a/document/src/vespa/document/test/make_bucket_space.cpp b/document/src/vespa/document/test/make_bucket_space.cpp
new file mode 100644
index 00000000000..a213e5e36b7
--- /dev/null
+++ b/document/src/vespa/document/test/make_bucket_space.cpp
@@ -0,0 +1,12 @@
+// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+
+#include "make_bucket_space.h"
+
+namespace document::test {
+
+BucketSpace makeBucketSpace()
+{
+ return BucketSpace::placeHolder();
+}
+
+}
diff --git a/document/src/vespa/document/test/make_bucket_space.h b/document/src/vespa/document/test/make_bucket_space.h
new file mode 100644
index 00000000000..8289ec2030a
--- /dev/null
+++ b/document/src/vespa/document/test/make_bucket_space.h
@@ -0,0 +1,13 @@
+// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+
+#pragma once
+
+#include <vespa/document/bucket/bucketspace.h>
+
+namespace document::test {
+
+// Helper function used by unit tests
+
+BucketSpace makeBucketSpace();
+
+}