68a75eeca2
Summary: Seperate rpc server names Reviewers: florijan, teon.banek Reviewed By: florijan Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D1118
12 lines
272 B
C++
12 lines
272 B
C++
#include "gtest/gtest.h"
|
|
|
|
#include "config.hpp"
|
|
#include "database/graph_db.hpp"
|
|
|
|
TEST(DatabaseMaster, Instantiate) {
|
|
database::Config config;
|
|
config.master_endpoint = io::network::Endpoint("127.0.0.1", 0);
|
|
config.worker_id = 0;
|
|
database::Master master(config);
|
|
}
|