1 // Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
2 //
3 // This Source Code Form is subject to the terms of the Mozilla Public
4 // License, v. 2.0. If a copy of the MPL was not distributed with this
5 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 
7 #include <config.h>
8 
9 #include <log/logger_support.h>
10 #include <gtest/gtest.h>
11 
12 int
main(int argc,char * argv[])13 main(int argc, char* argv[]) {
14     ::testing::InitGoogleTest(&argc, argv);
15     isc::log::initLogger();
16 
17     int result = RUN_ALL_TESTS();
18 
19     return (result);
20 }
21