getDefaultOptions() public method

public getDefaultOptions ( )
 /**
  * It should work with the default options.
  */
 public function testTimeFormatDefault()
 {
     $format = new TimeUnitFormat(new TimeUnit());
     $result = $format->format('1234', $format->getDefaultOptions());
     $this->assertEquals('1,234.000μs', $result);
 }