PhpBench\Util\TimeUnit::toDestUnit PHP Method

toDestUnit() public method

Convert instance value to given unit.
public toDestUnit ( $time, $destUnit = null, $mode = null ) : integer
return integer
    public function toDestUnit($time, $destUnit = null, $mode = null)
    {
        return self::convert($time, $this->sourceUnit, $this->getDestUnit($destUnit), $this->getMode($mode));
    }

Usage Example

Beispiel #1
0
 /**
  * It should convert one time unit to another in throughput mode.
  *
  * @dataProvider provideConvertThroughput
  */
 public function testConvertThroughput($time, $unit, $destUnit, $expectedThroughput)
 {
     $unit = new TimeUnit($unit, $destUnit);
     $result = $unit->toDestUnit($time, null, TimeUnit::MODE_THROUGHPUT);
     $this->assertEquals($expectedThroughput, $result);
 }