File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 31
31
#include < gtest/gtest.h>
32
32
#include < iterator>
33
33
#include < numeric>
34
+ #include " ur_client_library/control/reverse_interface.h"
34
35
35
36
#include < ur_client_library/control/script_command_interface.h>
36
37
#include < ur_client_library/comm/tcp_socket.h>
@@ -102,7 +103,11 @@ class ScriptCommandInterfaceTest : public ::testing::Test
102
103
103
104
void SetUp ()
104
105
{
105
- script_command_interface_.reset (new control::ScriptCommandInterface (control::ReverseInterfaceConfig{ 50004 }));
106
+ control::ReverseInterfaceConfig config;
107
+ config.port = 50004 ;
108
+ // Assume, we have all features supported
109
+ config.robot_software_version = VersionInformation::fromString (" 99.99.9" );
110
+ script_command_interface_.reset (new control::ScriptCommandInterface (config));
106
111
client_.reset (new Client (50004 ));
107
112
}
108
113
You can’t perform that action at this time.
0 commit comments