Beispiel #1
0
 /**
  * @covers  \Joomla\Profiler\Profiler::getMemoryPeakBytes
  */
 public function testTheProfilerReturnsThePeakMemoryUse()
 {
     $this->assertNull($this->instance->getMemoryPeakBytes());
 }
 /**
  * Tests the getMemoryPeakBytes method.
  *
  * @return  void
  *
  * @covers  \Joomla\Profiler\Profiler::getMemoryPeakBytes
  * @since   1.0
  */
 public function testGetMemoryPeakBytes()
 {
     TestHelper::setValue($this->instance, 'memoryPeakBytes', 10);
     $this->assertEquals(10, $this->instance->getMemoryPeakBytes());
 }