mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-10-31 03:14:31 +01:00 
			
		
		
		
	Rename docs, tests and test/ui to doc, test and test/frontend to suite skeleton definition. refs #4212
		
			
				
	
	
		
			51 lines
		
	
	
		
			914 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			914 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Tests\Icinga\Protocol\Ldap;
 | |
| /**
 | |
| *
 | |
| * Test class for Node 
 | |
| * Created Tue, 12 Mar 2013 17:08:12 +0000 
 | |
| *
 | |
| **/
 | |
| class NodeTest extends \PHPUnit_Framework_TestCase
 | |
| {
 | |
| 
 | |
|     /**
 | |
|     * Test for Node::GetRDN() 
 | |
|     *
 | |
|     **/
 | |
|     public function testGetRDN()
 | |
|     {
 | |
|         $this->markTestIncomplete('testGetRDN is not implemented yet');
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|     * Test for Node::GetDN() 
 | |
|     *
 | |
|     **/
 | |
|     public function testGetDN()
 | |
|     {
 | |
|         $this->markTestIncomplete('testGetDN is not implemented yet');
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|     * Test for Node::__get() 
 | |
|     *
 | |
|     **/
 | |
|     public function test__get()
 | |
|     {
 | |
|         $this->markTestIncomplete('test__get is not implemented yet');
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|     * Test for Node::CreateWithRDN() 
 | |
|     * Note: This method is static! 
 | |
|     *
 | |
|     **/
 | |
|     public function testCreateWithRDN()
 | |
|     {
 | |
|         $this->markTestIncomplete('testCreateWithRDN is not implemented yet');
 | |
|     }
 | |
| 
 | |
| }
 |