From 4c5df3e4479bc3413f8885acbd5936a916ff9145 Mon Sep 17 00:00:00 2001 From: Thierry T <1940947+lepiaf@users.noreply.github.com> Date: Mon, 25 Jan 2021 22:42:32 +0100 Subject: [PATCH] Add assert on test CommandDataCollectorTest --- Tests/DataCollector/CommandDataCollectorTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Tests/DataCollector/CommandDataCollectorTest.php b/Tests/DataCollector/CommandDataCollectorTest.php index 9a70c06a..a48895b5 100644 --- a/Tests/DataCollector/CommandDataCollectorTest.php +++ b/Tests/DataCollector/CommandDataCollectorTest.php @@ -20,5 +20,6 @@ public function testCollector(): void $collector = new CommandDataCollector(new CommandLogger()); $collector->collect($request = new Request(['group' => '0']), $response = new Response()); + $this->assertSame(0, $collector->getCommandCount()); } }