assertEquals( -1, PMA_Util::extractValueFromFormattedSize(100) ); } function testExtractValueFromFormattedSizeGB() { $this->assertEquals( 10737418240, PMA_Util::extractValueFromFormattedSize("10GB") ); } function testExtractValueFromFormattedSizeMB() { $this->assertEquals( 15728640, PMA_Util::extractValueFromFormattedSize("15MB") ); } function testExtractValueFromFormattedSizeK() { $this->assertEquals( 262144, PMA_Util::extractValueFromFormattedSize("256K") ); } }