You are here

public function MemoryDataCollectorTest::getBytesConversionTestData in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/Tests/DataCollector/MemoryDataCollectorTest.php \Symfony\Component\HttpKernel\Tests\DataCollector\MemoryDataCollectorTest::getBytesConversionTestData()

File

vendor/symfony/http-kernel/Tests/DataCollector/MemoryDataCollectorTest.php, line 39

Class

MemoryDataCollectorTest

Namespace

Symfony\Component\HttpKernel\Tests\DataCollector

Code

public function getBytesConversionTestData() {
  return array(
    array(
      '2k',
      2048,
    ),
    array(
      '2 k',
      2048,
    ),
    array(
      '8m',
      8 * 1024 * 1024,
    ),
    array(
      '+2 k',
      2048,
    ),
    array(
      '+2???k',
      2048,
    ),
    array(
      '0x10',
      16,
    ),
    array(
      '0xf',
      15,
    ),
    array(
      '010',
      8,
    ),
    array(
      '+0x10 k',
      16 * 1024,
    ),
    array(
      '1g',
      1024 * 1024 * 1024,
    ),
    array(
      '1G',
      1024 * 1024 * 1024,
    ),
    array(
      '-1',
      -1,
    ),
    array(
      '0',
      0,
    ),
    array(
      '2mk',
      2048,
    ),
  );
}