mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-11-04 13:14:41 +01:00 
			
		
		
		
	Rename docs, tests and test/ui to doc, test and test/frontend to suite skeleton definition. refs #4212
		
			
				
	
	
		
			74 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Tests\Icinga;
 | 
						|
/**
 | 
						|
*
 | 
						|
* Test class for Benchmark 
 | 
						|
* Created Wed, 16 Jan 2013 15:15:16 +0000 
 | 
						|
*
 | 
						|
**/
 | 
						|
class BenchmarkTest extends \PHPUnit_Framework_TestCase
 | 
						|
{
 | 
						|
 | 
						|
    /**
 | 
						|
    * Test for Benchmark::Measure() 
 | 
						|
    * Note: This method is static! 
 | 
						|
    *
 | 
						|
    **/
 | 
						|
    public function testMeasure()
 | 
						|
    {
 | 
						|
        $this->markTestIncomplete('testMeasure is not implemented yet');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
    * Test for Benchmark::Reset() 
 | 
						|
    * Note: This method is static! 
 | 
						|
    *
 | 
						|
    **/
 | 
						|
    public function testReset()
 | 
						|
    {
 | 
						|
        $this->markTestIncomplete('testReset is not implemented yet');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
    * Test for Benchmark::GetStartTime() 
 | 
						|
    * Note: This method is static! 
 | 
						|
    *
 | 
						|
    **/
 | 
						|
    public function testGetStartTime()
 | 
						|
    {
 | 
						|
        $this->markTestIncomplete('testGetStartTime is not implemented yet');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
    * Test for Benchmark::Dump() 
 | 
						|
    * Note: This method is static! 
 | 
						|
    *
 | 
						|
    **/
 | 
						|
    public function testDump()
 | 
						|
    {
 | 
						|
        $this->markTestIncomplete('testDump is not implemented yet');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
    * Test for Benchmark::RenderToText() 
 | 
						|
    * Note: This method is static! 
 | 
						|
    *
 | 
						|
    **/
 | 
						|
    public function testRenderToText()
 | 
						|
    {
 | 
						|
        $this->markTestIncomplete('testRenderToText is not implemented yet');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
    * Test for Benchmark::RenderToHtml() 
 | 
						|
    * Note: This method is static! 
 | 
						|
    *
 | 
						|
    **/
 | 
						|
    public function testRenderToHtml()
 | 
						|
    {
 | 
						|
        $this->markTestIncomplete('testRenderToHtml is not implemented yet');
 | 
						|
    }
 | 
						|
 | 
						|
}
 |