Cross-test parse_size() and format_size().

File

modules/simpletest/tests/common.test, line 677
Tests for common.inc functionality.

Class

CommonSizeTestCase
Tests file size parsing and formatting functions.

Code

function testCommonParseSizeFormatSize() {
  foreach ($this->exact_test_cases as $size) {
    $this
      ->assertEqual($size, $parsed_size = parse_size($string = format_size($size, NULL)), $size . ' == ' . $parsed_size . ' (' . $string . ')');
  }
}