mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-10-31 11:24:51 +01:00 
			
		
		
		
	Rename docs, tests and test/ui to doc, test and test/frontend to suite skeleton definition. refs #4212
		
			
				
	
	
		
			83 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			83 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
| *
 | |
| * Test class for Monlib_Gui_Util 
 | |
| * Created Wed, 16 Jan 2013 15:15:14 +0000 
 | |
| *
 | |
| **/
 | |
| class Monlib_Gui_UtilTest extends \PHPUnit_Framework_TestCase
 | |
| {
 | |
| 
 | |
|     /**
 | |
|     * Test for Monlib_Gui_Util::ShowTimeSince() 
 | |
|     * Note: This method is static! 
 | |
|     *
 | |
|     **/
 | |
|     public function testShowTimeSince()
 | |
|     {
 | |
|         $this->markTestIncomplete('testShowTimeSince is not implemented yet');
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|     * Test for Monlib_Gui_Util::ShowHourMin() 
 | |
|     * Note: This method is static! 
 | |
|     *
 | |
|     **/
 | |
|     public function testShowHourMin()
 | |
|     {
 | |
|         $this->markTestIncomplete('testShowHourMin is not implemented yet');
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|     * Test for Monlib_Gui_Util::ShowSeconds() 
 | |
|     * Note: This method is static! 
 | |
|     *
 | |
|     **/
 | |
|     public function testShowSeconds()
 | |
|     {
 | |
|         $this->markTestIncomplete('testShowSeconds is not implemented yet');
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|     * Test for Monlib_Gui_Util::ShowTime() 
 | |
|     * Note: This method is static! 
 | |
|     *
 | |
|     **/
 | |
|     public function testShowTime()
 | |
|     {
 | |
|         $this->markTestIncomplete('testShowTime is not implemented yet');
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|     * Test for Monlib_Gui_Util::GetHostStateClassName() 
 | |
|     * Note: This method is static! 
 | |
|     *
 | |
|     **/
 | |
|     public function testGetHostStateClassName()
 | |
|     {
 | |
|         $this->markTestIncomplete('testGetHostStateClassName is not implemented yet');
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|     * Test for Monlib_Gui_Util::GetHostStateName() 
 | |
|     * Note: This method is static! 
 | |
|     *
 | |
|     **/
 | |
|     public function testGetHostStateName()
 | |
|     {
 | |
|         $this->markTestIncomplete('testGetHostStateName is not implemented yet');
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|     * Test for Monlib_Gui_Util::GetServiceStateName() 
 | |
|     * Note: This method is static! 
 | |
|     *
 | |
|     **/
 | |
|     public function testGetServiceStateName()
 | |
|     {
 | |
|         $this->markTestIncomplete('testGetServiceStateName is not implemented yet');
 | |
|     }
 | |
| 
 | |
| }
 |