aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/vespa/document/test/make_document_bucket.cpp
blob: 0d72f8544a5706437f8111561c56d07aa90e19cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "make_document_bucket.h"
#include "make_bucket_space.h"

namespace document::test {

Bucket makeDocumentBucket(BucketId bucketId)
{
    return Bucket(makeBucketSpace(), bucketId);
}

}