@@ -50,7 +50,7 @@ namespace rtl_tests
5050 ASSERT_FALSE (animal.isEmpty ());
5151
5252 // Retrieve the "setAnimalName" method.
53- optional<Method> oSetAnimalName = classAnimal->getMethod (cxx::type::Animal::fn::setFamilyName ::id);
53+ optional<Method> oSetAnimalName = classAnimal->getMethod (cxx::type::Animal::fn::setAnimalName ::id);
5454 ASSERT_TRUE (oSetAnimalName);
5555 // Verify that the method has the correct signature for an R-value reference.
5656 EXPECT_TRUE ((oSetAnimalName->hasSignature <std::string&&>()));
@@ -92,7 +92,7 @@ namespace rtl_tests
9292 ASSERT_FALSE (animal.isEmpty ());
9393
9494 // Retrieve the "setAnimalName" method.
95- optional<Method> oSetAnimalName = classAnimal->getMethod (cxx::type::Animal::fn::setFamilyName ::id);
95+ optional<Method> oSetAnimalName = classAnimal->getMethod (cxx::type::Animal::fn::setAnimalName ::id);
9696 ASSERT_TRUE (oSetAnimalName);
9797 // Verify that the method has the correct signature for a non-const L-value reference.
9898 EXPECT_TRUE ((oSetAnimalName->hasSignature <std::string&>()));
@@ -135,7 +135,7 @@ namespace rtl_tests
135135 ASSERT_FALSE (animal.isEmpty ());
136136
137137 // Retrieve the "setAnimalName" method.
138- optional<Method> oSetAnimalName = classAnimal->getMethod (cxx::type::Animal::fn::setFamilyName ::id);
138+ optional<Method> oSetAnimalName = classAnimal->getMethod (cxx::type::Animal::fn::setAnimalName ::id);
139139 ASSERT_TRUE (oSetAnimalName);
140140 // Verify that the method has the correct signature for a const L-value reference.
141141 EXPECT_TRUE ((oSetAnimalName->hasSignature <const std::string&>()));
@@ -179,7 +179,7 @@ namespace rtl_tests
179179 ASSERT_FALSE (animal.isEmpty ());
180180
181181 // Retrieve the "setAnimalName" method.
182- optional<Method> oSetAnimalName = classAnimal->getMethod (cxx::type::Animal::fn::setFamilyName ::id);
182+ optional<Method> oSetAnimalName = classAnimal->getMethod (cxx::type::Animal::fn::setAnimalName ::id);
183183 ASSERT_TRUE (oSetAnimalName);
184184 // Verify that the method has the correct signature for an R-value reference.
185185 EXPECT_TRUE ((oSetAnimalName->hasSignature <std::string&&>()));
@@ -221,7 +221,7 @@ namespace rtl_tests
221221 ASSERT_FALSE (animal.isEmpty ());
222222
223223 // Retrieve the "setAnimalName" method.
224- optional<Method> oSetAnimalName = classAnimal->getMethod (cxx::type::Animal::fn::setFamilyName ::id);
224+ optional<Method> oSetAnimalName = classAnimal->getMethod (cxx::type::Animal::fn::setAnimalName ::id);
225225 ASSERT_TRUE (oSetAnimalName);
226226 // Verify that the method has the correct signature for a non-const L-value reference.
227227 EXPECT_TRUE ((oSetAnimalName->hasSignature <std::string&>()));
@@ -263,7 +263,7 @@ namespace rtl_tests
263263 ASSERT_FALSE (animal.isEmpty ());
264264
265265 // Retrieve the "setAnimalName" method.
266- optional<Method> oSetAnimalName = classAnimal->getMethod (cxx::type::Animal::fn::setFamilyName ::id);
266+ optional<Method> oSetAnimalName = classAnimal->getMethod (cxx::type::Animal::fn::setAnimalName ::id);
267267 ASSERT_TRUE (oSetAnimalName);
268268 // Verify that the method has the correct signature for a const L-value reference.
269269 EXPECT_TRUE ((oSetAnimalName->hasSignature <const std::string&>()));
0 commit comments