@@ -35,12 +35,12 @@ class MockSotLoaderBasicTest : public ::testing::Test {
35
35
EXPECT_EQ (parseOptions (argc, argv), -1 );
36
36
37
37
// Test input file
38
- char argv3[60 ] = " --input-file=libimpl_test_sot_external_interface .so" ;
38
+ char argv3[60 ] = " --input-file=libimpl_test_library .so" ;
39
39
argv[1 ] = argv3;
40
40
EXPECT_EQ (parseOptions (argc, argv), 0 );
41
41
42
42
// Check that the file is what we specified
43
- std::string finalname (" libimpl_test_sot_external_interface .so" );
43
+ std::string finalname (" libimpl_test_library .so" );
44
44
EXPECT_TRUE (finalname == dynamicLibraryName_);
45
45
}
46
46
@@ -72,14 +72,14 @@ class MockSotLoaderBasicTest : public ::testing::Test {
72
72
73
73
char argv1[30 ] = " mocktest" ;
74
74
argv[0 ] = argv1;
75
- char argv2[60 ] = " --input-file=libimpl_test_sot_external_interface .so" ;
75
+ char argv2[60 ] = " --input-file=libimpl_test_library .so" ;
76
76
argv[1 ] = argv2;
77
77
parseOptions (argc, argv);
78
78
79
- std::string finalname (" libimpl_test_sot_external_interface .so" );
79
+ std::string finalname (" libimpl_test_library .so" );
80
80
EXPECT_TRUE (finalname == dynamicLibraryName_);
81
81
82
- // Performs initializatio of libimpl_test_sot_external_interface .so
82
+ // Performs initializatio of libimpl_test_library .so
83
83
loadController ();
84
84
EXPECT_TRUE (sotRobotControllerLibrary_ != 0 );
85
85
EXPECT_TRUE (sotController_ != nullptr );
@@ -106,14 +106,14 @@ class MockSotLoaderBasicTest : public ::testing::Test {
106
106
107
107
char argv1[30 ] = " mocktest" ;
108
108
argv[0 ] = argv1;
109
- char argv2[60 ] = " --input-file=libimpl_test_sot_external_interface .so" ;
109
+ char argv2[60 ] = " --input-file=libimpl_test_library .so" ;
110
110
argv[1 ] = argv2;
111
111
parseOptions (argc, argv);
112
112
113
- std::string finalname (" libimpl_test_sot_external_interface .so" );
113
+ std::string finalname (" libimpl_test_library .so" );
114
114
EXPECT_TRUE (finalname == dynamicLibraryName_);
115
115
116
- // Performs initializatio of libimpl_test_sot_external_interface .so
116
+ // Performs initializatio of libimpl_test_library .so
117
117
loadController ();
118
118
// Remove
119
119
CleanUp ();
0 commit comments