コード例 #1
0
ファイル: TextHelperTest.php プロジェクト: rbertani/kanboard
 public function testFormatBytes()
 {
     $h = new Text($this->container);
     $this->assertEquals('1k', $h->bytes(1024));
     $this->assertEquals('33.71k', $h->bytes(34520));
 }