mjsax commented on code in PR #17190:
URL: https://github.com/apache/kafka/pull/17190#discussion_r1828530061


##########
streams/src/test/java/org/apache/kafka/streams/processor/internals/ProcessorTopologyTest.java:
##########
@@ -312,79 +312,6 @@ public void 
testDrivingSimpleTopologyWithDroppingPartitioner() {
         assertTrue(outputTopic1.isEmpty());
     }
 
-    @Test
-    public void testDrivingStatefulTopology() {

Review Comment:
   @pegasas -- i don't see any reply on this comment (same for the other 3 
below)



##########
streams/src/test/java/org/apache/kafka/streams/processor/internals/ProcessorTopologyTest.java:
##########
@@ -312,79 +312,6 @@ public void 
testDrivingSimpleTopologyWithDroppingPartitioner() {
         assertTrue(outputTopic1.isEmpty());
     }
 
-    @Test
-    public void testDrivingStatefulTopology() {
-        final String storeName = "entries";
-        driver = new TopologyTestDriver(createStatefulTopology(storeName), 
props);
-        final TestInputTopic<String, String> inputTopic = 
driver.createInputTopic(INPUT_TOPIC_1, STRING_SERIALIZER, STRING_SERIALIZER);
-        final TestOutputTopic<Integer, String> outputTopic1 =
-                driver.createOutputTopic(OUTPUT_TOPIC_1, 
Serdes.Integer().deserializer(), Serdes.String().deserializer());
-
-        inputTopic.pipeInput("key1", "value1");
-        inputTopic.pipeInput("key2", "value2");
-        inputTopic.pipeInput("key3", "value3");
-        inputTopic.pipeInput("key1", "value4");
-        assertTrue(outputTopic1.isEmpty());
-
-        final KeyValueStore<String, String> store = 
driver.getKeyValueStore(storeName);
-        assertEquals("value4", store.get("key1"));
-        assertEquals("value2", store.get("key2"));
-        assertEquals("value3", store.get("key3"));
-        assertNull(store.get("key4"));
-    }
-
-    @Test
-    public void testDrivingConnectedStateStoreTopology() {

Review Comment:
   @pegasas -- i don't see any reply on this comment (2ed one)



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to