0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
vendor
/
bafs
/
testify
/
lib
/
Testify
/
[
Home
]
File: Util.php
<?php namespace Testify; /** * Util class * * @license GPL */ class Util { /** * Calculate the percentage of success for a test * * @param array $suiteResults * @return float Percent */ public static function percent($suiteResults) { $sum = $suiteResults['pass'] + $suiteResults['fail']; return round($suiteResults['pass'] * 100 / max($sum, 1), 2); } }