main.cpp 661 字节
Newer Older
J
jinhai 已提交
1 2 3 4 5
////////////////////////////////////////////////////////////////////////////////
// Copyright 上海赜睿信息科技有限公司(Zilliz) - All Rights Reserved
// Unauthorized copying of this file, via any medium is strictly prohibited.
// Proprietary and confidential.
////////////////////////////////////////////////////////////////////////////////
J
jinhai 已提交
6
#include <gtest/gtest.h>
J
jinhai 已提交
7
#include <gmock/gmock.h>
J
jinhai 已提交
8 9
#include <easylogging++.h>

G
groot 已提交
10
#include "server/ServerConfig.h"
G
groot 已提交
11
#include "utils/CommonUtil.h"
G
groot 已提交
12

J
jinhai 已提交
13
INITIALIZE_EASYLOGGINGPP
J
jinhai 已提交
14

J
jinhai 已提交
15
using namespace zilliz::milvus;
G
groot 已提交
16

J
jinhai 已提交
17 18 19 20
int main(int argc, char **argv) {
    ::testing::InitGoogleTest(&argc, argv);
    return RUN_ALL_TESTS();
}