OpcUaCanOpen
CANopen OPC-UA server
main.cpp
Go to the documentation of this file.
1 /* © Copyright Ben Farnham, CERN, 2018. All rights not expressly granted are reserved.
2  * nodemanagerbase.cpp
3  *
4  * Created on: reated on: Apr 11, 2018
5  * Author: Ben Farnham <ben.farnham@cern.ch>
6  *
7  * This file is part of Quasar.
8  *
9  * Quasar is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Lesser General Public Licence as published by
11  * the Free Software Foundation, either version 3 of the Licence.
12  *
13  * Quasar is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU Lesser General Public Licence for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with Quasar. If not, see <http://www.gnu.org/licenses/>.
20  */
21 #include "gtest/gtest.h"
22 #include "LogIt.h"
23 
24 int main(int argc, char** argv)
25 {
26  ::testing::InitGoogleTest(&argc, argv);
27  return RUN_ALL_TESTS();
28 }
29 
30