@@ -2623,11 +2623,9 @@ class DataReaderUnsupportedTests : public ::testing::Test
26232623/*
26242624 * This test checks that the DataReader methods defined in the standard not yet implemented in FastDDS return
26252625 * RETCODE_UNSUPPORTED. The following methods are checked:
2626- * 1. get_matched_publication_data
2627- * 2. create_querycondition
2628- * 3. get_matched_publications
2629- * 4. get_key_value
2630- * 5. wait_for_historical_data
2626+ * 1. create_querycondition
2627+ * 2. get_key_value
2628+ * 3. wait_for_historical_data
26312629 */
26322630TEST_F (DataReaderUnsupportedTests, UnsupportedDataReaderMethods)
26332631{
@@ -2648,12 +2646,6 @@ TEST_F(DataReaderUnsupportedTests, UnsupportedDataReaderMethods)
26482646 DataReader* data_reader = subscriber->create_datareader (topic, DATAREADER_QOS_DEFAULT );
26492647 ASSERT_NE (data_reader, nullptr );
26502648
2651- PublicationBuiltinTopicData publication_data;
2652- InstanceHandle_t publication_handle;
2653- EXPECT_EQ (
2654- RETCODE_UNSUPPORTED ,
2655- data_reader->get_matched_publication_data (publication_data, publication_handle));
2656-
26572649 {
26582650 SampleStateMask sample_states = ANY_SAMPLE_STATE ;
26592651 ViewStateMask view_states = ANY_VIEW_STATE ;
@@ -2670,9 +2662,6 @@ TEST_F(DataReaderUnsupportedTests, UnsupportedDataReaderMethods)
26702662 query_parameters));
26712663 }
26722664
2673- std::vector<InstanceHandle_t> publication_handles;
2674- EXPECT_EQ (RETCODE_UNSUPPORTED , data_reader->get_matched_publications (publication_handles));
2675-
26762665 InstanceHandle_t key_handle;
26772666 EXPECT_EQ (RETCODE_UNSUPPORTED , data_reader->get_key_value (nullptr , key_handle));
26782667
0 commit comments