@@ -132,7 +151,8 @@
-
+
{% endif %}
{% endfor %}
diff --git a/tests/unit/Application/Movie/Service/VoteCountFormatterTest.php b/tests/unit/Application/Movie/Service/VoteCountFormatterTest.php
new file mode 100644
index 00000000..c2332a04
--- /dev/null
+++ b/tests/unit/Application/Movie/Service/VoteCountFormatterTest.php
@@ -0,0 +1,48 @@
+subject = new VoteCountFormatter();
+ }
+
+ /**
+ * @dataProvider provideTestData
+ */
+ public function testFormat(?int $voteCount, string $expectedResult) : void
+ {
+ self::assertSame($expectedResult, $this->subject->formatVoteCount($voteCount));
+ }
+}