diff --git a/test/unit/NumberFormatterTest.php b/test/unit/NumberFormatterTest.php new file mode 100644 index 0000000..5cbe983 --- /dev/null +++ b/test/unit/NumberFormatterTest.php @@ -0,0 +1,40 @@ +formatter = new NumberFormatter; + } + + /** + * testFormat + * + * @return void + */ + public function testFormat() + { + $formatter = $this->formatter; + + $number= $formatter->format('123'); + $this->assertEquals($number, 123); + } +} \ No newline at end of file